diff options
author | grant <grant> | 2003-06-10 06:33:24 +0000 |
---|---|---|
committer | grant <grant> | 2003-06-10 06:33:24 +0000 |
commit | 632bb6bc25d75f3516b25c7403682329650ce187 (patch) | |
tree | 9175049808eb93ac9d608ba067fb490b924d440b /pkgtools | |
parent | 229a8b310e87ef48cc53b6f483c8c18146bf89b3 (diff) | |
download | pkgsrc-632bb6bc25d75f3516b25c7403682329650ce187.tar.gz |
protect against multiple inclusion
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/libnbcompat/files/nbcompat.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgtools/libnbcompat/files/nbcompat.h b/pkgtools/libnbcompat/files/nbcompat.h index b88f91fafaa..e31ba75a639 100644 --- a/pkgtools/libnbcompat/files/nbcompat.h +++ b/pkgtools/libnbcompat/files/nbcompat.h @@ -1,3 +1,6 @@ +#ifndef _NBCOMPAT_H +#define _NBCOMPAT_H + #include "config.h" #include <nbtypes.h> @@ -336,3 +339,5 @@ char *strsep(char **stringp, const char *delim); #define SECSPERMIN 60 #define SECSPERDAY 86400 #define TM_YEAR_BASE 1900 + +#endif /* _NBCOMPAT_H */ |