mirror of
https://github.com/ldmud/ldmud
synced 2026-08-12 14:26:05 -04:00
Similar to #else and #endif warn about trailing characters also in #include, #ifdef, #ifndef, #undef and #line statements.
11 lines
167 B
C
11 lines
167 B
C
// Trailing comments after an #ifdef should not throw an error.
|
|
|
|
#pragma pedantic
|
|
|
|
#ifdef WHATEVER /* this should not fail */
|
|
#endif
|
|
|
|
int run_test()
|
|
{
|
|
return 1;
|
|
}
|