diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/sys/fsuid.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/sys/fsuid.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/sys/fsuid.h b/sysdeps/unix/sysv/linux/sys/fsuid.h index cb8915a52e..6572472f3b 100644 --- a/sysdeps/unix/sysv/linux/sys/fsuid.h +++ b/sysdeps/unix/sysv/linux/sys/fsuid.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -26,10 +26,10 @@ __BEGIN_DECLS /* Change uid used for file access control to UID, without affecting other privileges (such as who can send signals at the process). */ -extern int setfsuid __P ((__uid_t __uid)); +extern int setfsuid (__uid_t __uid) __THROW; /* Ditto for group id. */ -extern int setfsgid __P ((__gid_t __gid)); +extern int setfsgid (__gid_t __gid) __THROW; __END_DECLS |