From 19ba389c50bf8d28edff3f5fe14b2199f3b67393 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 6 Sep 2004 05:45:49 +0000 Subject: [PATCH] Fix up header guards. --- src/lib/syscall-nr.h | 4 ++-- src/lib/user/syscall-stub.h | 4 ++-- src/threads/intr-stubs.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lib/syscall-nr.h b/src/lib/syscall-nr.h index cf93449..498d05c 100644 --- a/src/lib/syscall-nr.h +++ b/src/lib/syscall-nr.h @@ -1,5 +1,5 @@ -#ifndef __LIB_SYSCALL-NR_H -#define __LIB_SYSCALL-NR_H +#ifndef __LIB_SYSCALL_NR_H +#define __LIB_SYSCALL_NR_H /* System call numbers. */ #define SYS_halt 0 /* Halts the operating system. */ diff --git a/src/lib/user/syscall-stub.h b/src/lib/user/syscall-stub.h index 80274bb..4f6036f 100644 --- a/src/lib/user/syscall-stub.h +++ b/src/lib/user/syscall-stub.h @@ -1,5 +1,5 @@ -#ifndef __LIB_USER_SYSCALL-STUB_H -#define __LIB_USER_SYSCALL-STUB_H +#ifndef __LIB_USER_SYSCALL_STUB_H +#define __LIB_USER_SYSCALL_STUB_H int syscall (int nr, ...); diff --git a/src/threads/intr-stubs.h b/src/threads/intr-stubs.h index debeaab..116b637 100644 --- a/src/threads/intr-stubs.h +++ b/src/threads/intr-stubs.h @@ -1,5 +1,5 @@ -#ifndef THREADS_INTR-STUBS_H -#define THREADS_INTR-STUBS_H +#ifndef THREADS_INTR_STUBS_H +#define THREADS_INTR_STUBS_H /* Interrupt stubs. -- 2.30.2