mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
20 lines
608 B
C
20 lines
608 B
C
#ifndef COSMOPOLITAN_LIBC_TEMP_H_
|
|
#define COSMOPOLITAN_LIBC_TEMP_H_
|
|
COSMOPOLITAN_C_START_
|
|
|
|
char *mktemp(char *) returnsnonnull paramsnonnull();
|
|
char *mkdtemp(char *) paramsnonnull() __wur;
|
|
int mkstemp(char *) paramsnonnull() __wur;
|
|
int mkstemps(char *, int) paramsnonnull() __wur;
|
|
|
|
#if defined(_GNU_SOURCE) || defined(_COSMO_SOURCE)
|
|
int mkostemp(char *, unsigned) paramsnonnull() __wur;
|
|
int mkostemps(char *, int, unsigned) paramsnonnull() __wur;
|
|
#endif
|
|
|
|
#ifdef _COSMO_SOURCE
|
|
int openatemp(int, char *, int, int, int) paramsnonnull() __wur;
|
|
#endif
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_LIBC_TEMP_H_ */
|