1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Remove __wur from setfsuid and setfsgid.

This commit is contained in:
Adam Conrad
2013-04-18 23:58:16 -06:00
parent 7756ba9d6d
commit ccdad15df5
2 changed files with 7 additions and 2 deletions

View File

@ -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