[PATCH 1/8] arc: libgloss: Fix define guard in nsim-syscall.h [email protected] Tue, 20 Aug 2024 15:10:36 +0300 Newsgroups gmane.comp.lib.newlib Message-ID <[email protected]> From: Yuriy Kolerov <[email protected]> Signed-off-by: Yuriy Kolerov <[email protected]> --- libgloss/arc/nsim-syscall.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libgloss/arc/nsim-syscall.h b/libgloss/arc/nsim-syscall.h index a2009f5b2..9d13b226e 100644 --- a/libgloss/arc/nsim-syscall.h +++ b/libgloss/arc/nsim-syscall.h @@ -28,8 +28,8 @@ POSSIBILITY OF SUCH DAMAGE. */ -#ifndef _ASM_ARC_UNISTD_H -#define _ASM_ARC_UNISTD_H +#ifndef _NSIM_SYSCALL_H +#define _NSIM_SYSCALL_H #include <stdint.h> @@ -454,4 +454,4 @@ struct nsim_stat { uint32_t __unused5; }; -#endif /* _ASM_ARC_UNISTD_H */ +#endif /* _NSIM_SYSCALL_H */ -- 2.34.1