diff options
Diffstat (limited to 'libsandbox/wrapper-funcs/mkostemp.c')
-rw-r--r-- | libsandbox/wrapper-funcs/mkostemp.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libsandbox/wrapper-funcs/mkostemp.c b/libsandbox/wrapper-funcs/mkostemp.c new file mode 100644 index 0000000..0ecb87f --- /dev/null +++ b/libsandbox/wrapper-funcs/mkostemp.c @@ -0,0 +1,11 @@ +/* + * mkostemp() wrapper. + * + * Copyright 1999-2011 Gentoo Foundation + * Licensed under the GPL-2 + */ + +#define WRAPPER_ARGS_PROTO char *template, int flags +#define WRAPPER_ARGS template, flags +#define WRAPPER_SAFE() SB_SAFE(template) +#include "__wrapper_simple.c" |