This is the mail archive of the
newlib@sourceware.org
mailing list for the newlib project.
riscv fenv.h header file guard typo
- From: Joel Sherrill <joel at rtems dot org>
- To: Newlib <newlib at sourceware dot org>
- Date: Wed, 31 Jul 2019 17:47:05 -0500
- Subject: riscv fenv.h header file guard typo
- Reply-to: joel at rtems dot org
Hi
While working on the proposed fenv.h infrastructure support, I noticed that
the riscv fenv.h and sys/fenv.h appear to have very similar header guards
(only a trailing _ differentiates them).
/libc/machine/riscv/include/fenv.h:#ifndef _FENV_H
./libc/machine/riscv/sys/fenv.h:#ifndef _FENV_H_
Would it be better for sys/fenv.h to have _SYS_FENV_H?
--joel