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