summaryrefslogtreecommitdiffstats
path: root/sys/lib/libkern/max.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/lib/libkern/max.c')
-rw-r--r--sys/lib/libkern/max.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/lib/libkern/max.c b/sys/lib/libkern/max.c
index 7a7222fe360..3472497c9ce 100644
--- a/sys/lib/libkern/max.c
+++ b/sys/lib/libkern/max.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: max.c,v 1.3 2003/06/02 23:28:08 millert Exp $ */
+/* $OpenBSD: max.c,v 1.4 2004/08/07 00:38:32 deraadt Exp $ */
/* $NetBSD: max.c,v 1.3 1996/03/14 18:52:12 christos Exp $ */
/*
@@ -36,8 +36,7 @@
#include <lib/libkern/libkern.h>
unsigned int
-max(a, b)
- unsigned int a, b;
+max(unsigned int a, unsigned int b)
{
return (a > b ? a : b);
}