aboutsummaryrefslogtreecommitdiffstats
path: root/templates/wrapper_table
blob: 2e79fcd71ff30e853eb2057f6f376667f0499281 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@name pseudo_wrapper_table.c
@header
/* The table of wrapper functions to populate */

/* This file is generated and should not be modified.  See the makewrappers
 * script if you want to modify this. */
static struct {
	char *name;		/* the name */
	int (**real)(void);	/* the underlying syscall */
	int (*wrapper)(void);	/* the wrapper from guts/name.c */
} pseudo_functions[] = {
@body
	{ /* ${comment}; */
		"${name}${maybe_inode64}",
		(int (**)(void)) &real_${name},
		(int (*)(void)) wrap_${name}
	},
@footer
	{ NULL, NULL, NULL },
};