HomeSort by: relevance | last modified time | path
    Searched refs:GETTEMP (Results 1 - 8 of 8) sorted by relevancy

  /src/lib/libc/stdio/
gettemp.h 33 # define GETTEMP __nbcompat_gettemp
41 # define GETTEMP __gettemp
45 int GETTEMP(char *, int *, int, int, int);
mkostemp.c 28 #include "gettemp.h"
35 return GETTEMP(path, &fd, 0, 0, oflags) ? fd : -1;
mkostemps.c 28 #include "gettemp.h"
35 return GETTEMP(path, &fd, 0, slen, oflags) ? fd : -1;
mkstemps.c 28 #include "gettemp.h"
37 return GETTEMP(path, &fd, 0, slen, 0) ? fd : -1;
mktemp.c 31 #include "gettemp.h"
50 return GETTEMP(path, NULL, 0, 0, 0) ? path : NULL;
62 return GETTEMP(path, NULL, 0, 0, 0) ? path : NULL;
mkdtemp.c 32 #include "gettemp.h"
50 return GETTEMP(path, NULL, 1, 0, 0) ? path : NULL;
mkstemp.c 31 #include "gettemp.h"
55 return GETTEMP(path, &fd, 0, 0, 0) ? fd : -1;
gettemp.c 1 /* $NetBSD: gettemp.c,v 1.24 2025/08/06 23:51:16 kre Exp $ */
32 #include "gettemp.h"
41 __RCSID("$NetBSD: gettemp.c,v 1.24 2025/08/06 23:51:16 kre Exp $");
54 GETTEMP(char *path, int *doopen, int domkdir, int slen, int oflags)

Completed in 16 milliseconds