Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/riscv/include/ieeefp.h
39562 views
1
2
#ifndef _MACHINE_IEEEFP_H_
3
#define _MACHINE_IEEEFP_H_
4
5
/* TODO */
6
typedef int fp_except_t;
7
8
__BEGIN_DECLS
9
extern fp_except_t fpgetmask(void);
10
extern fp_except_t fpsetmask(fp_except_t);
11
__END_DECLS
12
13
#endif /* _MACHINE_IEEEFP_H_ */
14
15