mirror of
https://github.com/zeldaret/mm.git
synced 2026-06-20 15:41:10 -04:00
14 lines
243 B
C
14 lines
243 B
C
#ifndef PR_OS_LIBC_H
|
|
#define PR_OS_LIBC_H
|
|
|
|
#include "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
|