about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/sys
diff options
context:
space:
mode:
authorAdam Conrad <adconrad@0c3.net>2013-04-18 23:58:16 -0600
committerAdam Conrad <adconrad@0c3.net>2013-04-18 23:58:16 -0600
commitccdad15df5bb2ec898fbf10c7195164cf228833a (patch)
treea2481420c1cadef9d91a2b73b3d75d4d21ce6ace /sysdeps/unix/sysv/linux/sys
parent7756ba9d6d268b893fd17e56119cea6636be903f (diff)
downloadglibc-ccdad15df5bb2ec898fbf10c7195164cf228833a.tar.gz
glibc-ccdad15df5bb2ec898fbf10c7195164cf228833a.tar.xz
glibc-ccdad15df5bb2ec898fbf10c7195164cf228833a.zip
Remove __wur from setfsuid and setfsgid.
Diffstat (limited to 'sysdeps/unix/sysv/linux/sys')
-rw-r--r--sysdeps/unix/sysv/linux/sys/fsuid.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/sys/fsuid.h b/sysdeps/unix/sysv/linux/sys/fsuid.h
index f844a5ff0e..7590313b19 100644
--- a/sysdeps/unix/sysv/linux/sys/fsuid.h
+++ b/sysdeps/unix/sysv/linux/sys/fsuid.h
@@ -25,10 +25,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 (__uid_t __uid) __THROW __wur;
+extern int setfsuid (__uid_t __uid) __THROW;
 
 /* Ditto for group id. */
-extern int setfsgid (__gid_t __gid) __THROW __wur;
+extern int setfsgid (__gid_t __gid) __THROW;
 
 __END_DECLS