blob: ad54c14bf250c326431e9e95f8aa71e4adcce257 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* $OpenBSD: test_def.h,v 1.2 1996/03/04 10:37:26 mickey Exp $ */
/* $NetBSD: test_def.h,v 1.4 1994/06/29 06:41:20 cgd Exp $ */
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"); }
|