diff options
Diffstat (limited to 'nptl/pthread_setreuid.c')
-rw-r--r-- | nptl/pthread_setreuid.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/nptl/pthread_setreuid.c b/nptl/pthread_setreuid.c index aa804ab01d..61365b0683 100644 --- a/nptl/pthread_setreuid.c +++ b/nptl/pthread_setreuid.c @@ -1,3 +1,9 @@ +#include <pthreadP.h> +#ifndef NO_SETXID_SUPPORT #define SINGLE_THREAD #define __setreuid pthread_setreuid_np #include <setreuid.c> +#else /* NO_SETXID_SUPPORT */ +stub_warning (pthread_setreuid_np) +#include <stub-tag.h> +#endif /* NO_SETXID_SUPPORT */ |