plist-macros-ctu.c 198 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 #include "plist-macros-ctu.h" #define M *X = (int *)0 void F1(int **X) { M; } #undef M #define M *Y = (int *)0 void F2(int **Y) { M; } #define M1 *Z = (int *)0 void F3(int **Z) { M1; }