2002.05.07 ~17 "static" support in q3asm Ogg Vorbis reference library makes a few uses of the static keyword for some functions. Staticness is recognized by q3lcc, and it shows in its assembly output; static functions do not have their symbols flagged for exporting. The linker, q3asm, blithely ignores staticness, along the lines of: else if (!strcmp(token, "export")) { } else ... In effect, all functions are exported; static functions aren't static. Although I already patched Ogg Vorbis to be static-less, WIBNI q3asm properly understood the [not] exporting function symbols.