mirror of
https://github.com/cc65/cc65.git
synced 2024-11-01 11:04:34 +00:00
14 lines
189 B
C
14 lines
189 B
C
|
|
/* bug #1098 Empty enumerator-list */
|
|
|
|
/* The C Standard requires that something exists between the braces for
|
|
* enum, struct, and union. */
|
|
|
|
enum {
|
|
};
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|