Module Name: src
Committed By: christos
Date: Tue Jan 10 17:00:58 UTC 2017
Modified Files:
src/lib/libc/stdio: fdopen.c
Log Message:
Need <sys/stat.h>
To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/lib/libc/stdio/fdopen.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/stdio/fdopen.c
diff -u src/lib/libc/stdio/fdopen.c:1.16 src/lib/libc/stdio/fdopen.c:1.17
--- src/lib/libc/stdio/fdopen.c:1.16 Thu Mar 15 14:22:30 2012
+++ src/lib/libc/stdio/fdopen.c Tue Jan 10 12:00:58 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: fdopen.c,v 1.16 2012/03/15 18:22:30 christos Exp $ */
+/* $NetBSD: fdopen.c,v 1.17 2017/01/10 17:00:58 christos Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -37,12 +37,14 @@
#if 0
static char sccsid[] = "@(#)fdopen.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: fdopen.c,v 1.16 2012/03/15 18:22:30 christos Exp $");
+__RCSID("$NetBSD: fdopen.c,v 1.17 2017/01/10 17:00:58 christos Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
#include "namespace.h"
+
#include <sys/types.h>
+#include <sys/stat.h>
#include <assert.h>
#include <errno.h>