123456789101112131415161718192021222324252627282930313233343536 |
- #include <errno.h>
- #include <stdlib.h>
- #include <sysdep.h>
- #include "pthreadP.h"
- extern __typeof(system) __libc_system;
- #include <system.c>
- int
- system (const char *line)
- {
- return __libc_system (line);
- }
- LIBC_CANCEL_HANDLED ();
|