diff options
author | 1996-04-19 16:08:13 +0000 | |
---|---|---|
committer | 1996-04-19 16:08:13 +0000 | |
commit | 0c0430f8be50281c74d9dc83e99431ec6557954b (patch) | |
tree | afa225701d5d148fcc2f938d8b48ae7e0389ceef /sys/lib/libkern/ulmax.c | |
parent | Fix a bit, so it's now compiles. (diff) | |
download | wireguard-openbsd-0c0430f8be50281c74d9dc83e99431ec6557954b.tar.xz wireguard-openbsd-0c0430f8be50281c74d9dc83e99431ec6557954b.zip |
NetBSD 960317 merge
Diffstat (limited to 'sys/lib/libkern/ulmax.c')
-rw-r--r-- | sys/lib/libkern/ulmax.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/lib/libkern/ulmax.c b/sys/lib/libkern/ulmax.c index 0beadeacb7e..e0b7817c43d 100644 --- a/sys/lib/libkern/ulmax.c +++ b/sys/lib/libkern/ulmax.c @@ -1,4 +1,5 @@ -/* $NetBSD: ulmax.c,v 1.2 1994/10/26 06:42:52 cgd Exp $ */ +/* $OpenBSD: ulmax.c,v 1.2 1996/04/19 16:09:40 niklas Exp $ */ +/* $NetBSD: ulmax.c,v 1.3 1996/03/14 18:52:23 christos Exp $ */ /* * Copyright (c) 1982, 1986, 1991 Regents of the University of California. @@ -35,6 +36,9 @@ * @(#)subr_xxx.c 7.10 (Berkeley) 4/20/91 */ +#define LIBKERN_INLINE +#include <lib/libkern/libkern.h> + unsigned long ulmax(a, b) unsigned long a, b; |