summaryrefslogtreecommitdiff
path: root/klibc/include/stdlib.h
diff options
context:
space:
mode:
authorkay.sievers@vrfy.org <kay.sievers@vrfy.org>2004-12-14 11:42:06 +0100
committerGreg KH <gregkh@suse.de>2005-04-26 23:13:48 -0700
commit027263f0056e7cbd43c0860ba5dcafd9e4cac916 (patch)
tree263cde65f32acbc82cd616751f758fbd6417cc10 /klibc/include/stdlib.h
parentbc0410fdb64e295ae74d990185fa0bbc883e5432 (diff)
[PATCH] update klibc to 0.194
Diffstat (limited to 'klibc/include/stdlib.h')
-rw-r--r--klibc/include/stdlib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/klibc/include/stdlib.h b/klibc/include/stdlib.h
index be4e76ed9f..54d45043f7 100644
--- a/klibc/include/stdlib.h
+++ b/klibc/include/stdlib.h
@@ -21,6 +21,7 @@ __extern __noreturn abort(void);
static __inline__ int abs(int __n) {
return (__n < 0) ? -__n : __n;
}
+__extern int system(const char * string);
__extern int atexit(void (*)(void));
__extern int on_exit(void (*)(int, void *), void *);
__extern int atoi(const char *);