diff options
Diffstat (limited to 'nptl/pt-system.c')
-rw-r--r-- | nptl/pt-system.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/nptl/pt-system.c b/nptl/pt-system.c index e98f04c413..f638a6ae32 100644 --- a/nptl/pt-system.c +++ b/nptl/pt-system.c @@ -26,11 +26,5 @@ int system (const char *line) { - int oldtype = CANCEL_ASYNC (); - - int result = __libc_system (line); - - CANCEL_RESET (oldtype); - - return result; + return __libc_system (line); } |