mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
- Introduce portable sched_getcpu() api - Support GCC's __target_clones__ feature - Make fma() go faster on x86 in default mode - Remove some asan checks from core libraries - WinMain() now ensures $HOME and $USER are defined
11 lines
436 B
C
11 lines
436 B
C
#ifndef COSMOPOLITAN_LIBC_X_XASPRINTF_H_
|
|
#define COSMOPOLITAN_LIBC_X_XASPRINTF_H_
|
|
COSMOPOLITAN_C_START_
|
|
|
|
char *xasprintf(const char *, ...) paramsnonnull((1))
|
|
returnspointerwithnoaliases dontthrow dontcallback __wur returnsnonnull;
|
|
char *xvasprintf(const char *, va_list) paramsnonnull()
|
|
returnspointerwithnoaliases dontthrow dontcallback __wur returnsnonnull;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_LIBC_X_XASPRINTF_H_ */
|