X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Fatan.c;fp=functions%2Fmath%2Fatan.c;h=228c9397d069a06845228f061ea2fa6359b7c6ce;hb=dcc8a8e99f69e090a03b7b868443addbc0817820;hp=0000000000000000000000000000000000000000;hpb=e794d9887cd8f94befd7861e39eccf46666c89fe;p=pdclib.old diff --git a/functions/math/atan.c b/functions/math/atan.c new file mode 100644 index 0000000..228c939 --- /dev/null +++ b/functions/math/atan.c @@ -0,0 +1,19 @@ +// ---------------------------------------------------------------------------- +// $Id$ +// ---------------------------------------------------------------------------- +// Public Domain C Library - http://pdclib.sourceforge.net +// This code is Public Domain. Use, modify, and redistribute at will. +// ---------------------------------------------------------------------------- + +// ---------------------------------------------------------------------------- +// C++ + +float atan( float x ) { /* TODO */ }; +long double atan( long double x ) { /* TODO */ }; + +// ---------------------------------------------------------------------------- +// Standard C + +double atan( double x ) { /* TODO */ }; +float atanf( float x ) { /* TODO */ }; +long double atanl( long double x ) { /* TODO */ };