{net04:~/xxxx/wip} gcc -o write_test write_test.c
In file included from write_test.c:4:
global.h:10: warning: `b' initialized and declared `extern'
このコードは、fcntl.hと、open()、write()、close()などの定義されたファイル処理関数を使用します。コードは意図したとおりにコンパイルおよび動作します。
{net04:~/xxxx/wip} gcc -o write_test write_test.cpp
In file included from write_test.cpp:4:
global.h:10: warning: `b' initialized and declared `extern'
write_test.cpp: In function `int main()':
write_test.cpp:56: error: `exit' undeclared (first use this function)
write_test.cpp:56: error: (Each undeclared identifier is reported only once for each function it appears in.)
write_test.cpp:58: error: `write' undeclared (first use this function)
write_test.cpp:62: error: `close' undeclared (first use this function)
CPPソースコードとして使用すると、GCCが文句を言うのはなぜですか?そして不思議なことに、なぜそれがopen()に文句を言わないのですか?ここで何が起こっているのでしょうか?