diff options
| author | Xin LI <delphij@FreeBSD.org> | 2008-04-18 04:23:05 +0000 |
|---|---|---|
| committer | Xin LI <delphij@FreeBSD.org> | 2008-04-18 04:23:05 +0000 |
| commit | f6c7699f92b85e911645c2446bfe57c006cfa9ae (patch) | |
| tree | ae724fe9dfaece8ea0cf7fc8a313de39d82d3bf1 | |
| parent | 1647042bd790d1420b238a7a7c090d4397a5bc88 (diff) | |
Notes
| -rw-r--r-- | lib/libstand/stand.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/libstand/stand.h b/lib/libstand/stand.h index 219b2df46976..1e462bfb7338 100644 --- a/lib/libstand/stand.h +++ b/lib/libstand/stand.h @@ -62,6 +62,9 @@ * @(#)stand.h 8.1 (Berkeley) 6/11/93 */ +#ifndef STAND_H +#define STAND_H + #include <sys/types.h> #include <sys/cdefs.h> #include <sys/stat.h> @@ -408,3 +411,5 @@ void Free(void *, const char *, int); #define free(x) Free(x, NULL, 0) #define realloc(x, y) Realloc(x, y, NULL, 0) #endif + +#endif /* STAND_H */ |
