/* @(#)w_hypot.c 5.1 93/09/24 */ /* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. * * Developed at SunPro, a Sun Microsystems, Inc. business. * Permission to use, copy, modify, and distribute this * software is freely granted, provided that this notice * is preserved. * ==================================================== */ #if defined(LIBM_SCCS) && !defined(lint) static char rcsid[] = "$NetBSD: w_hypot.c,v 1.6 1995/05/10 20:49:07 jtc Exp $"; #endif /* * wrapper hypot(x,y) */ #include "math.h" #include "math_private.h" #ifdef __STDC__ double hypot(double x, double y)/* wrapper hypot */ #else double hypot(x,y) /* wrapper hypot */ double x,y; #endif { #ifdef _IEEE_LIBM return __ieee754_hypot(x,y); #else double z; z = __ieee754_hypot(x,y); if(_LIB_VERSION == _IEEE_) return z; if((!finite(z))&&finite(x)&&finite(y)) return __kernel_standard(x,y,4); /* hypot overflow */ else return z; #endif } type='submit' value='switch'/> NetBSD fork for lockdoc analysismerlin@scholz.ruhr
summaryrefslogtreecommitdiff
path: root/lib/libc/sys/semctl.c
AgeCommit message (Expand)Author
2015-01-29Remove va_arg hack for Clang/PPC.joerg
2014-08-13Use the lint path as workaround for Clang on 32bit PPC for now.joerg
2014-08-10If LINT code path uses memcpy, it should also include string.h.joerg
2009-01-16don't use glue for semctl, the number of underscores makes this an intractablechristos
2009-01-15fix the semctl glue build that worked before by chance by side effects ofchristos
2009-01-11merge christos-time_tchristos
2005-09-13compat core reorg.christos
2003-07-26netbsd.org->NetBSD.orgsalo
2003-01-18Merge the nathanw_sa branch.thorpej
2002-05-26__STDC__ is always defined on NetBSD.wiz
2000-06-14sweep of my licenses (userland files w/o only my copyright) forcgd
2000-06-14fix up NetBSD RCS Ids to match the standard, and the leading comment ascgd
2000-01-22Delint.mycroft
1999-08-25Add __msgctl13(), __semctl13(), and __shmctl13() (symbols are __RENAME()'dthorpej