Cross Reference: isoc99
xref
: /
osnet-11
/
usr
/
src
/
lib
/
libast
/
common
/
features
/
isoc99
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
1
N/A
if tst -D_ISOC99_SOURCE -lm note{ _ISOC99_SOURCE plays nice }end link{
1
N/A
#include <
sys/types.h
>
1
N/A
#include <
sys/stat.h
>
1
N/A
#include <
stdlib.h
>
1
N/A
#include <
unistd.h
>
1
N/A
#include <
math.h
>
1
N/A
int main() { return signbit(-0.0); }
1
N/A
}end {
1
N/A
#ifndef _ISOC99_SOURCE
1
N/A
#define _ISOC99_SOURCE 1
1
N/A
#endif
1
N/A
}
1
N/A
endif