diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-07-22 05:47:17 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-07-22 05:47:17 +0000 |
commit | 9a97faafbcd7bc23d5adf32f4ed135bdf623629a (patch) | |
tree | d20e2fba0f9fce0ae5f30490d01e61da3725dcc6 /libc/stdlib/system.c | |
parent | eb6ed4fe445d1d604a6deab019d547f78540127e (diff) | |
download | uClibc-alpine-9a97faafbcd7bc23d5adf32f4ed135bdf623629a.tar.bz2 uClibc-alpine-9a97faafbcd7bc23d5adf32f4ed135bdf623629a.tar.xz |
Add futex support into uClibc. Selection of futex support independent of
NPTL is not currently supported.
Diffstat (limited to 'libc/stdlib/system.c')
-rw-r--r-- | libc/stdlib/system.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdlib/system.c b/libc/stdlib/system.c index b365ef82e..06f11abf2 100644 --- a/libc/stdlib/system.c +++ b/libc/stdlib/system.c @@ -10,7 +10,7 @@ #define vfork fork #endif -int __libc_system(char *command) +int __libc_system(__const char *command) { int wait_val, pid; __sighandler_t save_quit, save_int, save_chld; |