blob: 84b554a04c65c344d4b4af26f3946bae3c8f1620 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _MACHINE_IEEEFP_H_
#define _MACHINE_IEEEFP_H_
/* TODO */
typedef int fp_except_t;
__BEGIN_DECLS
extern fp_except_t fpgetmask(void);
extern fp_except_t fpsetmask(fp_except_t);
__END_DECLS
#endif /* _MACHINE_IEEEFP_H_ */
|