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