summaryrefslogtreecommitdiffstats
path: root/contrib/netbsd-tests/usr.bin/xlint/lint1/d_c99_nested_struct.c
blob: 15410c899739fd41c3baec8db419ceeb443157fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* C99 nested struct init with named and non-named initializers */
typedef struct pthread_mutex_t {
 unsigned int ptm_magic;
 char ptm_errorcheck;

 char ptm_pad1[3];

 char ptm_interlock;

 char ptm_pad2[3];

 volatile void * ptm_owner;
 void * volatile ptm_waiters;
 unsigned int ptm_recursed;
 void *ptm_spare2;
} pthread_mutex_t;


struct arc4random_global {

 pthread_mutex_t lock;
} arc4random_global = {

 .lock = { 0x33330003, 0, { 0, 0, 0 }, 0, { 0, 0, 0 }, ((void *)0), ((void *)0), 0, ((void *)0) },
};
OpenPOWER on IntegriCloud