Module Name: src
Committed By: christos
Date: Sat Apr 17 17:48:34 UTC 2010
Modified Files:
src/include: unistd.h
Log Message:
PR/43172: Jukka Ruohonen: swab(3) lacks restrict-keyword
To generate a diff of this commit:
cvs rdiff -u -r1.121 -r1.122 src/include/unistd.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/include/unistd.h
diff -u src/include/unistd.h:1.121 src/include/unistd.h:1.122
--- src/include/unistd.h:1.121 Wed Jul 22 15:48:27 2009
+++ src/include/unistd.h Sat Apr 17 13:48:34 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: unistd.h,v 1.121 2009/07/22 19:48:27 kleink Exp $ */
+/* $NetBSD: unistd.h,v 1.122 2010/04/17 17:48:34 christos Exp $ */
/*-
* Copyright (c) 1998, 1999, 2008 The NetBSD Foundation, Inc.
@@ -259,7 +259,7 @@
int setpgrp(pid_t, pid_t); /* obsoleted by setpgid() */
int setregid(gid_t, gid_t);
int setreuid(uid_t, uid_t);
-void swab(const void *, void *, size_t);
+void swab(const void * __restrict, void * __restrict, size_t);
int symlink(const char *, const char *);
void sync(void);
useconds_t ualarm(useconds_t, useconds_t);