d_cast_fun_array_param.c revision 1.2
1/*	$NetBSD: d_cast_fun_array_param.c,v 1.2 2021/01/31 14:39:31 rillig Exp $	*/
2# 3 "d_cast_fun_array_param.c"
3
4static void f(void *b[4]) {
5	(void)&b;
6}
7
8void *
9foo(void *fn) {
10	return fn == 0 ? f : (void (*)(void *[4])) fn;
11}
12