1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00
cc65/test/misc/bug760.c
2020-07-13 15:13:22 +02:00

13 lines
180 B
C

/* bug#760 - Error when using macros as pragma arguments */
#include <stdlib.h>
#define BANK "PRG0"
#pragma rodata-name(push, BANK)
int main(void)
{
return EXIT_SUCCESS;
}