From: Roland McGrath Date: Thu, 10 Nov 1994 21:53:39 +0000 (+0000) Subject: (msync): Use __caddr_t instead of caddr_t in decl. X-Git-Tag: glibc-2.16-ports-before-merge~4034 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac63472234644bc1eff9bcbc4841f343ead085a2;p=thirdparty%2Fglibc.git (msync): Use __caddr_t instead of caddr_t in decl. --- diff --git a/sysdeps/unix/bsd/sun/sunos4/sys/mman.h b/sysdeps/unix/bsd/sun/sunos4/sys/mman.h index 0e66416b046..727e665fb67 100644 --- a/sysdeps/unix/bsd/sun/sunos4/sys/mman.h +++ b/sysdeps/unix/bsd/sun/sunos4/sys/mman.h @@ -95,7 +95,7 @@ int mprotect __P ((__caddr_t __addr, size_t __len, int __prot)); /* Synchronize the region starting at ADDR and extending LEN bytes with the file it maps. Filesystem operations on a file being mapped are unpredictable before this is done. */ -int msync __P ((caddr_t __addr, size_t __len, int __flags)); +int msync __P ((__caddr_t __addr, size_t __len, int __flags)); /* Advise the system about particular usage patterns the program follows for the region starting at ADDR and extending LEN bytes. */