mirror of
https://github.com/cc65/cc65.git
synced 2025-01-04 23:33:05 +00:00
b4aef6eac4
be preprocessed. See ISO/IEC 9899 1990 (E) section 6.8.2.
11 lines
195 B
C
11 lines
195 B
C
#define str(arg) #arg
|
|
#include str(bug2458.h) /* Ok, macro replacement */
|
|
|
|
#define string foo
|
|
#include <string.h> /* Ok, no macro replacement */
|
|
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|