mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 15:01:32 -04:00
6dd1600936
* Move qrand to libc64 * use an union to avoid type punning * __osMalloc * math64.c * fixed_point.h * sleep * aprintf.h * sprintf * malloc * use original names on aprintf.c and malloc.c * qrand cleanup pass * use original names of sleep.c * og names for sprintf * more cleanup * format * fixes * whoops * use ARRAY_COUNT again * comment * Use `fu` * forgot this one * review * fix * sneak a tiny cleanup
14 lines
248 B
C
14 lines
248 B
C
#ifndef PR_OS_LIBC_H
|
|
#define PR_OS_LIBC_H
|
|
|
|
#include "libc/stdarg.h"
|
|
|
|
|
|
void bcopy(void* __src, void* __dest, int __n);
|
|
int bcmp(void* __s1, void* __s2, int __n);
|
|
void bzero(void* begin, int length);
|
|
|
|
void osSyncPrintf(const char* fmt, ...);
|
|
|
|
#endif
|