diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-24 17:01:34 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-24 17:01:34 +0000 |
commit | f1aa47c5c10c714b83a1944e9fee18858f5b4ff8 (patch) | |
tree | dc5074dfe9b702fb50611f1691655efa5cf47af6 | |
parent | f60adf3bea4c21aa3b929bb038ca07da407b0b94 (diff) |
Add prototype for mincore(2)
-rw-r--r-- | sys/sys/mman.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sys/mman.h b/sys/sys/mman.h index 0706f088e23..4f847f1ccbb 100644 --- a/sys/sys/mman.h +++ b/sys/sys/mman.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mman.h,v 1.2 1996/03/03 12:12:01 niklas Exp $ */ +/* $OpenBSD: mman.h,v 1.3 1996/03/24 17:01:33 tholo Exp $ */ /* $NetBSD: mman.h,v 1.11 1995/03/26 20:24:23 jtc Exp $ */ /*- @@ -90,6 +90,7 @@ int msync __P((caddr_t, size_t)); int mlock __P((caddr_t, size_t)); int munlock __P((caddr_t, size_t)); int madvise __P((caddr_t, size_t, int)); +int mincore __P((caddr_t, size_t, char *)); __END_DECLS #endif /* !_KERNEL */ |