summaryrefslogtreecommitdiff
path: root/lib/libc/stdio
diff options
context:
space:
mode:
authorkleink <kleink@NetBSD.org>1998-10-16 20:48:06 +0000
committerkleink <kleink@NetBSD.org>1998-10-16 20:48:06 +0000
commit45f04f24afa79e3d94328294d379a885e6ea2d4e (patch)
tree26d6f0c03c4f56c60bec17577ab54af6368c4055 /lib/libc/stdio
parentbedf76900082a5bfe61f89025b8a8cefda3b2e27 (diff)
Need "namespace.h" for getdtablesize().
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r--lib/libc/stdio/findfp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/stdio/findfp.c b/lib/libc/stdio/findfp.c
index 672b7673a6b..21a5868d84b 100644
--- a/lib/libc/stdio/findfp.c
+++ b/lib/libc/stdio/findfp.c
@@ -1,4 +1,4 @@
-/* $NetBSD: findfp.c,v 1.9 1998/02/03 18:41:10 perry Exp $ */
+/* $NetBSD: findfp.c,v 1.10 1998/10/16 20:48:06 kleink Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -41,10 +41,11 @@
#if 0
static char sccsid[] = "@(#)findfp.c 8.2 (Berkeley) 1/4/94";
#else
-__RCSID("$NetBSD: findfp.c,v 1.9 1998/02/03 18:41:10 perry Exp $");
+__RCSID("$NetBSD: findfp.c,v 1.10 1998/10/16 20:48:06 kleink Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
+#include "namespace.h"
#include <sys/param.h>
#include <unistd.h>
#include <stdio.h>