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