* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr41006-1.c
blob8aef66dbdfeb8c700c0a32a0d5f85340485fda30
1 typedef int (*FARPROC)();
3 typedef int (*LPFN_ACCEPTEX)(void*);
4 static LPFN_ACCEPTEX acceptex_fn;
6 int xWSAIoctl(void*);
7 static void get_fn(FARPROC* fn)
9 FARPROC func;
10 if (!xWSAIoctl( &func))
11 *fn = func;
14 void get_fn_pointers()
16 get_fn((FARPROC*)&acceptex_fn);