summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-11-07 03:42:48 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-11-07 03:42:48 +0000
commitfe3798b99bef6ca8edca00952458769ee06865e6 (patch)
tree45f7c9c9023e3972325338b832e9cd16a204dc08 /usr.bin
parentf242ae0322ac2f6f773ff8dc0c1a4a62355c224f (diff)
need limits.h
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ranlib/build.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ranlib/build.c b/usr.bin/ranlib/build.c
index b6a3e29096e..5625f307927 100644
--- a/usr.bin/ranlib/build.c
+++ b/usr.bin/ranlib/build.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: build.c,v 1.4 1997/11/05 19:47:11 deraadt Exp $ */
+/* $OpenBSD: build.c,v 1.5 1997/11/07 03:42:47 deraadt Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -38,7 +38,7 @@
#ifndef lint
/*static char sccsid[] = "from: @(#)build.c 5.3 (Berkeley) 3/12/91";*/
-static char rcsid[] = "$OpenBSD: build.c,v 1.4 1997/11/05 19:47:11 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: build.c,v 1.5 1997/11/07 03:42:47 deraadt Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -49,6 +49,7 @@ static char rcsid[] = "$OpenBSD: build.c,v 1.4 1997/11/05 19:47:11 deraadt Exp $
#include <dirent.h>
#include <unistd.h>
#include <ar.h>
+#include <limits.h>
#include <ranlib.h>
#include <stdio.h>
#include <string.h>