From: Ben Pfaff Date: Mon, 6 Sep 2004 05:45:49 +0000 (+0000) Subject: Fix up header guards. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19ba389c50bf8d28edff3f5fe14b2199f3b67393;p=pintos-anon Fix up header guards. --- 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.