You've already forked smb-decomp
mirror of
https://github.com/encounter/smb-decomp.git
synced 2026-03-30 11:38:28 -07:00
13 lines
218 B
C
13 lines
218 B
C
#ifndef _STDLIB_H_
|
|
#define _STDLIB_H_
|
|
|
|
#include <stddef.h>
|
|
#include <wchar.h>
|
|
|
|
void srand(unsigned int seed);
|
|
int rand(void);
|
|
void exit(int status);
|
|
size_t wcstombs(char *dest, const wchar_t *src, size_t max);
|
|
|
|
#endif
|