diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2004-04-10 06:48:04 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2004-04-10 06:48:04 +0000 |
commit | 9a2363e9bdc8af78f4e481c8dffbe5613625f3ce (patch) | |
tree | b527f098fd53795d9c3024f8ca8f10dd7976ae4b | |
parent | 029ff8feb724bcaa2bef28b9646676db2fc818a5 (diff) |
ansi
-rw-r--r-- | lib/libpthread/uthread/uthread_msync.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/libpthread/uthread/uthread_msync.c b/lib/libpthread/uthread/uthread_msync.c index 3edde1a31d4..2cbbe9c6f47 100644 --- a/lib/libpthread/uthread/uthread_msync.c +++ b/lib/libpthread/uthread/uthread_msync.c @@ -1,7 +1,7 @@ /* * David Leonard <d@openbsd.org>, 1999. Public Domain. * - * $OpenBSD: uthread_msync.c,v 1.3 1999/11/25 07:01:38 d Exp $ + * $OpenBSD: uthread_msync.c,v 1.4 2004/04/10 06:48:03 brad Exp $ */ #include <sys/types.h> @@ -11,10 +11,7 @@ #include "pthread_private.h" int -msync(addr, len, flags) - void *addr; - size_t len; - int flags; +msync(void *addr, size_t len, int flags) { int ret; |