From 3ab0557e5a3a81b5202334142326dd2e5edc5d28 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 13 Feb 2002 09:47:04 +0000 Subject: A number of naming updates in preparation for adding in proper threading. Most of this is from Stefan Soucek, with additions and changes as needed from me. --- libc/stdlib/system.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libc/stdlib/system.c') diff --git a/libc/stdlib/system.c b/libc/stdlib/system.c index 5b279976c..6126d8114 100644 --- a/libc/stdlib/system.c +++ b/libc/stdlib/system.c @@ -4,7 +4,7 @@ #include #include -int system(command) +int __libc_system(command) char *command; { int wait_val, pid; @@ -47,3 +47,4 @@ char *command; signal(SIGCHLD, save_chld); return wait_val; } +weak_alias(__libc_system, system) -- cgit v1.2.3