]> git.proxmox.com Git - mirror_qemu.git/blame - HACKING
HACKING: add preprocessor rules
[mirror_qemu.git] / HACKING
CommitLineData
45fad878
BS
11. Preprocessor
2
3For variadic macros, stick with this C99-like syntax:
4
5#define DPRINTF(fmt, ...) \
6 do { printf("IRQ: " fmt, ## __VA_ARGS__); } while (0)