From e1a73e7875fd86aa2f018670714f8a7aeaa20287 Mon Sep 17 00:00:00 2001 From: Minero Aoki Date: Sat, 20 Jun 2009 18:47:38 +0000 Subject: [PATCH] * import/stdlib.hb: add system() prototype. git-svn-id: file:///Users/aamine/c/gitwork/public/cbc/trunk@4295 1b9489fe-b721-0410-924e-b54b9192deb8 --- ChangeLog | 4 ++++ import/stdlib.hb | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 92cc1a7..157ae8f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Jun 21 03:47:05 2009 Minero Aoki + + * import/stdlib.hb: add system() prototype. + Thu Jun 18 00:45:50 2009 Minero Aoki * lib/Makefile: use 's' option to create index. diff --git a/import/stdlib.hb b/import/stdlib.hb index 9498a4f..cf9f1af 100644 --- a/import/stdlib.hb +++ b/import/stdlib.hb @@ -7,3 +7,4 @@ extern void* calloc(size_t nmemb, size_t size); extern void* malloc(size_t size); extern void free(void* ptr); extern void* realloc(void* ptr, size_t size); +extern int system(char* command);