diff options
Diffstat (limited to 'nptl/pthread_setresuid.c')
-rw-r--r-- | nptl/pthread_setresuid.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/nptl/pthread_setresuid.c b/nptl/pthread_setresuid.c index ac57c0fa8d..37d5bc33e2 100644 --- a/nptl/pthread_setresuid.c +++ b/nptl/pthread_setresuid.c @@ -1,3 +1,9 @@ +#include <pthreadP.h> +#ifndef NO_SETXID_SUPPORT #define SINGLE_THREAD #define __setresuid pthread_setresuid_np #include <setresuid.c> +#else /* NO_SETXID_SUPPORT */ +stub_warning (pthread_setresuid_np) +#include <stub-tag.h> +#endif /* NO_SETXID_SUPPORT */ |