From: cuz Date: Tue, 27 May 2003 18:24:16 +0000 (+0000) Subject: Added the system() function X-Git-Tag: V2.12.0~1546 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=acd09ef19a2b1034f3bf94344ea1dbd464b8ac5c;p=cc65 Added the system() function git-svn-id: svn://svn.cc65.org/cc65/trunk@2172 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/include/stdlib.h b/include/stdlib.h index b57b62a40..c7e5cf07c 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -89,6 +89,7 @@ void __fastcall__ exit (int ret); char* __fastcall__ getenv (const char* name); void qsort (void* base, size_t count, size_t size, int (*compare) (const void*, const void*)); +int system (const char* s); /* Non-ANSI functions */ void __fastcall__ _swap (void* p, void* q, size_t size);