mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-19 09:31:40 +00:00
5be888a2bd
They are supposed to be macros, according to the C standards. This ordinarily doesn't matter, but it can be detected by #ifdef, as in the following program: #include <stdio.h> #ifdef stdin int main(void) { puts("stdin is a macro"); } #endif