diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-08-07 00:38:34 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-08-07 00:38:34 +0000 |
commit | 6199f15e3e0651e8399ad97e919a96d69d128ee2 (patch) | |
tree | cde8dbb44682b9bafafa3ec82a63352162d5cf59 /sys/lib/libkern/lmax.c | |
parent | f8b1d50fcd985a3171e1d491c63c553aff62c2a7 (diff) |
ansi and some missing protos
Diffstat (limited to 'sys/lib/libkern/lmax.c')
-rw-r--r-- | sys/lib/libkern/lmax.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/lib/libkern/lmax.c b/sys/lib/libkern/lmax.c index 9e56289ba3e..97d34ba6086 100644 --- a/sys/lib/libkern/lmax.c +++ b/sys/lib/libkern/lmax.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lmax.c,v 1.3 2003/06/02 23:28:08 millert Exp $ */ +/* $OpenBSD: lmax.c,v 1.4 2004/08/07 00:38:32 deraadt Exp $ */ /* $NetBSD: lmax.c,v 1.3 1996/03/14 18:52:09 christos Exp $ */ /* @@ -36,8 +36,7 @@ #include <lib/libkern/libkern.h> long -lmax(a, b) - long a, b; +lmax(long a, long b) { return (a > b ? a : b); } |