Gast
#199159
Hallo, zumindest mit dem gnu-Compiler DJGPP für DOS gibts ne Warnung,
wenn ich Funktionen vor dem Zugriff von weiteren Modlen sperren will:
/* foo.h */
static void func(int x);
/* foo.c */
static void funk(int x){
/* something to do */
}
Fehlermeldung:
setup.h:26: warning: 'foo' declared `static' but never defined
Macht man das nicht so (privat) und ich versteh was falsch?