From 17f610ec8afca6730aa0cdcdcb9d809bc300fd32 Mon Sep 17 00:00:00 2001 From: cgd Date: Mon, 18 Jul 1994 07:22:07 +0000 Subject: [PATCH] prototype for madvise(). it's not really implemented yet, but there's a stub for it in the kernel. --- sys/sys/mman.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/sys/mman.h b/sys/sys/mman.h index 8844f315e20d..b21b64a0becd 100644 --- a/sys/sys/mman.h +++ b/sys/sys/mman.h @@ -1,4 +1,4 @@ -/* $NetBSD: mman.h,v 1.7 1994/06/29 06:44:39 cgd Exp $ */ +/* $NetBSD: mman.h,v 1.8 1994/07/18 07:22:07 cgd Exp $ */ /*- * Copyright (c) 1982, 1986, 1993 @@ -86,6 +86,7 @@ int munmap __P((caddr_t, size_t)); 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)); __END_DECLS #endif /* !KERNEL */