mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-26 10:53:39 +01:00
fb3ef04d20
git-subtree-dir: contrib/unifdef git-subtree-mainline:3b7ffacdee
git-subtree-split:0da4488583
12 lines
161 B
C
12 lines
161 B
C
#if F1
|
|
int f1() { return 0; }
|
|
#elif F2
|
|
int f2() { return 0; }
|
|
#elif F3
|
|
int f3() { return 0; }
|
|
#elif F4
|
|
int f4() { return 0; }
|
|
#else
|
|
int f() { return 0; }
|
|
#endif
|