mirror of
https://github.com/cc65/cc65.git
synced 2024-11-12 07:07:19 +00:00
14 lines
206 B
C
14 lines
206 B
C
/* bug #1643, macro expansion in #include */
|
|
|
|
#define STDIO_H <stdio.h>
|
|
#include STDIO_H
|
|
|
|
#ifdef string
|
|
#undef string
|
|
#endif
|
|
|
|
#define string 0!%^&*/_=
|
|
#include <string.h>
|
|
|
|
#define BUG1643_RESULT 0
|