RISC-V: Fix header guard for sys/fenv.h

This commit is contained in:
Kito Cheng 2019-08-02 11:38:09 +08:00 committed by Corinna Vinschen
parent 2986a524d8
commit 654398db84
1 changed files with 3 additions and 3 deletions

View File

@ -9,8 +9,8 @@
http://www.opensource.org/licenses.
*/
#ifndef _FENV_H_
#define _FENV_H_
#ifndef _SYS_FENV_H
#define _SYS_FENV_H
#include <stddef.h>
@ -74,4 +74,4 @@ typedef size_t fexcept_t;
extern const fenv_t fe_dfl_env;
#define FE_DFL_ENV fe_dfl_env_p
#endif /* _FENV_H_ */
#endif /* _SYS_FENV_H */