diff options
author | 1997-01-18 13:39:28 +0000 | |
---|---|---|
committer | 1997-01-18 13:39:28 +0000 | |
commit | 61441e17241e31b1afd2f50ccc98587abe98ff47 (patch) | |
tree | 3da74b503b9b5acae2c96879ac83dc1b14692122 /sys/lib/libkern/libkern.h | |
parent | move the RB_TIMEBAD handling to where "howto" is reachable (diff) | |
download | wireguard-openbsd-61441e17241e31b1afd2f50ccc98587abe98ff47.tar.xz wireguard-openbsd-61441e17241e31b1afd2f50ccc98587abe98ff47.zip |
protect from multiple includes (required by gpl_math_emulate)
Diffstat (limited to 'sys/lib/libkern/libkern.h')
-rw-r--r-- | sys/lib/libkern/libkern.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/lib/libkern/libkern.h b/sys/lib/libkern/libkern.h index 1ff96e94724..ca270a217ee 100644 --- a/sys/lib/libkern/libkern.h +++ b/sys/lib/libkern/libkern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: libkern.h,v 1.7 1996/12/06 12:21:06 niklas Exp $ */ +/* $OpenBSD: libkern.h,v 1.8 1997/01/18 13:39:29 mickey Exp $ */ /* $NetBSD: libkern.h,v 1.7 1996/03/14 18:52:08 christos Exp $ */ /*- @@ -36,6 +36,9 @@ * @(#)libkern.h 8.1 (Berkeley) 6/10/93 */ +#ifndef __LIBKERN_H__ +#define __LIBKERN_H__ + #include <sys/types.h> #ifndef LIBKERN_INLINE @@ -131,3 +134,5 @@ int strncasecmp __P((const char *, const char *, size_t)); int getsn __P((char *, int)); void MD5Init __P((u_int32_t[4])); void MD5Transform __P((u_int32_t[4], u_int32_t const [16])); + +#endif /* __LIBKERN_H__ */ |