repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Check for SYS/GL during library init. Reason is that
[AROS.git]
/
arch
/
arm-all
/
include
/
aros
/
fenv.h
blob
9883e4b1dac0c302c84862f99391b9d5018d643a
1
/*
2
Copyright © 1995-2011, The AROS Development Team. All rights reserved.
3
$Id$
4
5
Desc: FPU-specific definitions for ARM processors
6
Lang: english
7
*/
8
9
#ifndef _FENV_H_
10
#define _FENV_H_
11
12
#ifdef __SOFTFP__
13
#include <aros/arm/fenv_soft.h>
14
#else
15
#include <aros/arm/fenv_vfp.h>
16
#endif
17
18
#endif
/* !_FENV_H_ */