Skip to content
Snippets Groups Projects
Commit 44b8e2ff authored by Andre Maroneze's avatar Andre Maroneze
Browse files

[Libc] change fexcept_t type and add macro for portability checks

parent c89894a0
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,13 @@ fenv_t;
// From POSIX 1-2017:
// - "fexcept_t does not have to be an integer type."
// - "... the user cannot inspect it."
#ifdef __FC_FEXCEPT_T_IS_SCALAR
// Non-portable code may consider fexcept_t as a scalar; this allows
// such code to be parsed.
typedef unsigned int fexcept_t;
#else
typedef struct __fc_fexcept_t { int _fc; } fexcept_t;
#endif
__FC_EXTERN volatile fenv_t __fc_fenv_state;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment