mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-17 16:10:46 +01:00
14 lines
195 B
C
14 lines
195 B
C
|
|
struct blah {
|
|
unsigned int blahfield;
|
|
int dummyi;
|
|
char dummyc;
|
|
};
|
|
|
|
struct test_pcbstruct {
|
|
int test_pcbfield;
|
|
int test_state;
|
|
};
|
|
|
|
#define MACRO1(arg) if(arg != 0) { printf("macro1\n"); }
|