diff options
Diffstat (limited to 'libpthread/nptl/pt-system.c')
-rw-r--r-- | libpthread/nptl/pt-system.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libpthread/nptl/pt-system.c b/libpthread/nptl/pt-system.c index 2d7f5d172..462fbf33a 100644 --- a/libpthread/nptl/pt-system.c +++ b/libpthread/nptl/pt-system.c @@ -22,15 +22,11 @@ #include <sysdep.h> #include "pthreadP.h" -/* Compatibility define. */ -#ifdef __UCLIBC__ -#define __libc_system system -#endif int system (const char *line) { - return __libc_system (line); + return system (line); } /* __libc_system in libc.so handles cancellation. */ |