Module Name:    src
Committed By:   christos
Date:           Tue Jan 10 16:51:30 UTC 2017

Modified Files:
        src/lib/libc/citrus: citrus_mmap.c

Log Message:
need <sys/stat.h>


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/lib/libc/citrus/citrus_mmap.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/citrus/citrus_mmap.c
diff -u src/lib/libc/citrus/citrus_mmap.c:1.4 src/lib/libc/citrus/citrus_mmap.c:1.5
--- src/lib/libc/citrus/citrus_mmap.c:1.4	Sat Oct 15 19:00:01 2011
+++ src/lib/libc/citrus/citrus_mmap.c	Tue Jan 10 11:51:30 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: citrus_mmap.c,v 1.4 2011/10/15 23:00:01 christos Exp $	*/
+/*	$NetBSD: citrus_mmap.c,v 1.5 2017/01/10 16:51:30 christos Exp $	*/
 
 /*-
  * Copyright (c)2003 Citrus Project,
@@ -28,10 +28,14 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: citrus_mmap.c,v 1.4 2011/10/15 23:00:01 christos Exp $");
+__RCSID("$NetBSD: citrus_mmap.c,v 1.5 2017/01/10 16:51:30 christos Exp $");
 #endif /* LIBC_SCCS and not lint */
 
 #include "namespace.h"
+
+#include <sys/mman.h>
+#include <sys/stat.h>
+
 #include <assert.h>
 #include <errno.h>
 #include <stdio.h>
@@ -40,7 +44,6 @@ __RCSID("$NetBSD: citrus_mmap.c,v 1.4 20
 #include <unistd.h>
 #include <fcntl.h>
 #include <limits.h>
-#include <sys/mman.h>
 
 #include "citrus_namespace.h"
 #include "citrus_region.h"

Reply via email to