diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-08-28 23:36:01 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-08-28 23:36:01 +0000 |
commit | 924102e7a6fea2d59ae535920d2cc188b6c81c49 (patch) | |
tree | 52069976f4ab32fa54b706c622c849546085a66f /sysdeps/unix/sysv | |
parent | 102f0642203547aaaadecf32c5b776c7a0e3e0f9 (diff) | |
download | glibc-924102e7a6fea2d59ae535920d2cc188b6c81c49.zip glibc-924102e7a6fea2d59ae535920d2cc188b6c81c49.tar.gz glibc-924102e7a6fea2d59ae535920d2cc188b6c81c49.tar.bz2 |
Update.
* sysdeps/unix/sysv/linux/powerpc/sysdep.h: Protect against double
inclusion.
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/sysdep.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/sysdep.h b/sysdeps/unix/sysv/linux/powerpc/sysdep.h index fbe3a48..dfd42b2 100644 --- a/sysdeps/unix/sysv/linux/powerpc/sysdep.h +++ b/sysdeps/unix/sysv/linux/powerpc/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1997, 1998, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -16,6 +16,9 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef _LINUX_POWERPC_SYSDEP_H +#define _LINUX_POWERPC_SYSDEP_H 1 + #include <sysdeps/unix/powerpc/sysdep.h> /* For Linux we can use the system call table in the header file @@ -142,3 +145,5 @@ #define L(x) .L##x #endif /* __ASSEMBLER__ */ + +#endif /* linux/powerpc/sysdep.h */ |