diff options
Diffstat (limited to 'nptl/pthread_setuid.c')
-rw-r--r-- | nptl/pthread_setuid.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/nptl/pthread_setuid.c b/nptl/pthread_setuid.c index ff949c850f..6af4193abf 100644 --- a/nptl/pthread_setuid.c +++ b/nptl/pthread_setuid.c @@ -1,3 +1,9 @@ +#include <pthreadP.h> +#ifndef NO_SETXID_SUPPORT #define SINGLE_THREAD #define __setuid pthread_setuid_np #include <setuid.c> +#else /* NO_SETXID_SUPPORT */ +stub_warning (pthread_setuid_np) +#include <stub-tag.h> +#endif /* NO_SETXID_SUPPORT */ |