Remove building with NOCRYPTO option
[minix.git] / tests / usr.bin / xlint / lint1 / d_c99_nested_struct.c
blob15410c899739fd41c3baec8db419ceeb443157fa
1 /* C99 nested struct init with named and non-named initializers */
2 typedef struct pthread_mutex_t {
3 unsigned int ptm_magic;
4 char ptm_errorcheck;
6 char ptm_pad1[3];
8 char ptm_interlock;
10 char ptm_pad2[3];
12 volatile void * ptm_owner;
13 void * volatile ptm_waiters;
14 unsigned int ptm_recursed;
15 void *ptm_spare2;
16 } pthread_mutex_t;
19 struct arc4random_global {
21 pthread_mutex_t lock;
22 } arc4random_global = {
24 .lock = { 0x33330003, 0, { 0, 0, 0 }, 0, { 0, 0, 0 }, ((void *)0), ((void *)0), 0, ((void *)0) },