mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
e0c2b91b3e
It never did anything and isn't worthwhile as documentation.
22 lines
653 B
C
22 lines
653 B
C
#ifndef COSMOPOLITAN_LIBC_STDIO_TEMP_H_
|
|
#define COSMOPOLITAN_LIBC_STDIO_TEMP_H_
|
|
#include "libc/stdio/stdio.h"
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
FILE *tmpfile(void);
|
|
char *mkdtemp(char *);
|
|
char *mktemp(char *);
|
|
char *tmpnam(char *);
|
|
int mkostemp(char *, unsigned);
|
|
int mkostemps(char *, int, unsigned);
|
|
int mkostempsm(char *, int, unsigned, int);
|
|
int mkstemp(char *);
|
|
int mkstemps(char *, int);
|
|
|
|
int mkostempsmi(char *, int, unsigned, uint64_t *, int,
|
|
int (*)(const char *, int, ...)) dontdiscard;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_STDIO_TEMP_H_ */
|