sortix-mirror/libm/src/namespace.h
Jonas 'Sortie' Termansen 5980be9b3c Add Sortix Math Library.
This work is based in part on code from NetBSD libm, libc and kernel.

The library is partly public domain and partly BSD-style licensed.
2013-12-17 14:30:39 +01:00

36 lines
714 B
C

/* $NetBSD: namespace.h,v 1.4 2011/07/26 16:10:16 joerg Exp $ */
#define atan2 _atan2
#define atan2f _atan2f
#define hypot _hypot
#define hypotf _hypotf
#define exp _exp
#define expf _expf
#define log _log
#define logf _logf
#if 0 /* not yet - need to review use in machdep code first */
#define sin _sin
#define sinf _sinf
#define cos _cos
#define cosf _cosf
#define finite _finite
#define finitef _finitef
#endif /* notyet */
#define sinh _sinh
#define sinhf _sinhf
#define cosh _cosh
#define coshf _coshf
#define asin _asin
#define asinf _asinf
#define casin _casin
#define casinf _casinf
#define catan _catan
#define catanf _catanf
#define scalbn _scalbn
#define scalbnf _scalbnf
#define scalbnl _scalbnl