mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-12-31 21:51:50 +01:00
11 lines
200 B
C
11 lines
200 B
C
#ifndef __LIBRETRO_SDK_CRT_STRING_H_
|
|
#define __LIBRETRO_SDK_CRT_STRING_H_
|
|
|
|
#include <stdio.h>
|
|
|
|
void *memcpy(void *dst, const void *src, size_t len);
|
|
|
|
void *memset(void *b, int c, size_t len);
|
|
|
|
#endif
|