mirror of
https://github.com/qemu/qemu.git
synced 2024-11-24 03:13:44 +08:00
7 lines
196 B
Plaintext
7 lines
196 B
Plaintext
|
1. Preprocessor
|
||
|
|
||
|
For variadic macros, stick with this C99-like syntax:
|
||
|
|
||
|
#define DPRINTF(fmt, ...) \
|
||
|
do { printf("IRQ: " fmt, ## __VA_ARGS__); } while (0)
|