From: Ulrich Drepper Date: Wed, 12 Aug 1998 17:03:37 +0000 (+0000) Subject: Protect against multiple inclusion. X-Git-Tag: cvs/glibc-4-egcs-1_1~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f001ded037094ee2527d7b532b66dc20fb9eae88;p=thirdparty%2Fglibc.git Protect against multiple inclusion. --- diff --git a/include/unistd.h b/include/unistd.h index f676cad4156..0546fdd7a3f 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -1,4 +1,5 @@ -#include +#ifndef _UNISTD_H +# include /* Now define the internal interfaces. */ extern int __access __P ((__const char *__name, int __type)); @@ -61,3 +62,4 @@ extern int __profil __P ((unsigned short int *__sample_buffer, size_t __size, size_t __offset, unsigned int __scale)); extern int __getdtablesize __P ((void)); extern int __brk __P ((__ptr_t __addr)); +#endif