shをつくる
p.341
char *cp, *malloc();
これはi686-apple-darwin9-gcc-4.0.1だとエラーが出る
psh1.c:43: error: conflicting types for ‘malloc’
なので以下のように修正
char *cp;
extern void *malloc();
shをつくる
p.341
char *cp, *malloc();
これはi686-apple-darwin9-gcc-4.0.1だとエラーが出る
psh1.c:43: error: conflicting types for ‘malloc’
なので以下のように修正
char *cp;
extern void *malloc();