aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
Diffstat (limited to 'libbb')
-rw-r--r--libbb/xfuncs_printf.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libbb/xfuncs_printf.c b/libbb/xfuncs_printf.c
index 8e60e2165..8a6d7e1d1 100644
--- a/libbb/xfuncs_printf.c
+++ b/libbb/xfuncs_printf.c
@@ -240,6 +240,14 @@ off_t FAST_FUNC xlseek(int fd, off_t offset, int whence)
240 return off; 240 return off;
241} 241}
242 242
243int FAST_FUNC xmkstemp(char *template)
244{
245 int fd = mkstemp(template);
246 if (fd < 0)
247 bb_perror_msg_and_die("can't create temp file '%s'", template);
248 return fd;
249}
250
243// Die with supplied filename if this FILE* has ferror set. 251// Die with supplied filename if this FILE* has ferror set.
244void FAST_FUNC die_if_ferror(FILE *fp, const char *fn) 252void FAST_FUNC die_if_ferror(FILE *fp, const char *fn)
245{ 253{