repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Restore the "GPL licensing not permitted" in GLUT license headers.
[haiku.git]
/
headers
/
posix
/
fenv.h
blob
31fdd0b851face570530fec1f04574ac769e1e36
1
#ifndef _FENV_H
2
#define _FENV_H
3
4
#if defined(__INTEL__)
5
# include <arch/x86/fenv.h>
6
#elif defined(__x86_64__)
7
# include <arch/x86_64/fenv.h>
8
#elif defined(__ARM__)
9
# include <arch/arm/fenv.h>
10
#elif defined(__POWERPC__)
11
# include <arch/ppc/fenv.h>
12
#else
13
# error There is no fenv.h for this architecture!
14
#endif
15
16
#endif
/* _FENV_H */
17