* import/stdlib.hb: add system() prototype.

git-svn-id: file:///Users/aamine/c/gitwork/public/cbc/trunk@4295 1b9489fe-b721-0410-924e-b54b9192deb8
This commit is contained in:
Minero Aoki 2009-06-20 18:47:38 +00:00
parent 498fbd1a3c
commit e1a73e7875
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Sun Jun 21 03:47:05 2009 Minero Aoki <aamine@loveruby.net>
* import/stdlib.hb: add system() prototype.
Thu Jun 18 00:45:50 2009 Minero Aoki <aamine@loveruby.net>
* lib/Makefile: use 's' option to create index.

View File

@ -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);