cheap2el作ってる時、少し気になってたのでGoogle先生に尋ねてみたら、関数についてはexternをわざわざつける必要は無かったみたいです。 - C言語のexternとincludeについて - Yahoo!知恵袋 -- http://detail.chiebukuro.yahoo.co.jp/qa/question_detail/q1023598815 - C言語 extern について | OKWave -- http://okwave.jp/qa/q3416848.html - External variable - Wikipedia, the free encyclopedia -- http://en.wikipedia.org/wiki/External_variable 一応ソースの首根っこをメモ。上記Wikipediaから辿れる、"The current Standard (C99 with Technical corrigenda TC1, TC2, and TC3 included)", WG14/N1256 Committee Draft(Septermber 7, 2007) ISO/IEC 9899:TC3 より: 6.2.2 Linkages of identifiers ... [5] If the declaration of an identifier for a function has no storage-class specifier, its linkage is determined exactly as if it were declared with the storage-class specifier extern. If the declaration of an identifier for an object has file scope and no storage-class specifier, its linkage is external. 昔C言語勉強してた時に、libを作る時にincludeするときはextern無しで、外部からリンクする為にincludeするときはextern有りにするとかでわざわざ #ifdef __BUILD_LIB__ #define Extern extern #endif ... Extern int foobar(int a, int b); とかして、libを作る時と、アプリ側でリンクする時とで define に応じて切り替えてるサンプルを見たことがあったので気になってましたが・・・無意味だったんだなー・・・。