-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathstdlib.h
86 lines (80 loc) · 2.97 KB
/
stdlib.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include <stddef.h>
#define EXIT_FAILURE 1
#define EXIT_SUCCESS 0
#define malloc __builtin_malloc
#define abort __builtin_abort
void free(void*);
typedef struct {
int quot;
int rem;
} div_t;
typedef struct {
long quot;
long rem;
} ldiv_t;
typedef struct {
long long quot;
long long rem;
} lldiv_t;
void _Exit(_cxgo_go_int);
long a64l(const char *);
_cxgo_int64 abs(_cxgo_int64);
int atexit(void (*)(void));
double atof(const char *);
_cxgo_go_int atoi(const char *);
_cxgo_go_int atol(const char *);
long long atoll(const char *);
void *bsearch(const void *, const void *, _cxgo_uint32, _cxgo_uint32, _cxgo_int32 (*)(const void *, const void *));
void *calloc(_cxgo_go_int, _cxgo_go_int);
div_t div(int, int);
double drand48(void);
double erand48(unsigned short [3]);
#define exit(x) _Exit(x)
int getsubopt(char **, char *const *, char **);
int grantpt(int);
char *initstate(unsigned, char *, size_t);
long jrand48(unsigned short [3]);
char *l64a(long);
long labs(long);
void lcong48(unsigned short [7]);
ldiv_t ldiv(long, long);
long long llabs(long long);
lldiv_t lldiv(long long, long long);
long lrand48(void);
void *malloc(_cxgo_go_int);
int mblen(const char *, size_t);
_cxgo_uint32 mbstowcs(wchar_t *restrict, const char *restrict, _cxgo_uint32);
int mbtowc(wchar_t *restrict, const char *restrict, size_t);
char *mkdtemp(char *);
int mkstemp(char *);
long mrand48(void);
long nrand48(unsigned short [3]);
int posix_memalign(void **, size_t, size_t);
int posix_openpt(int);
char *ptsname(int);
int putenv(char *);
void qsort(void *, _cxgo_uint32, _cxgo_uint32, _cxgo_int32 (*)(const void *, const void *));
_cxgo_sint32 rand(void);
int rand_r(unsigned *);
long random(void);
void *realloc(void *, _cxgo_go_int);
char *realpath(const char *restrict, char *restrict);
unsigned short *seed48(unsigned short [3]);
int setenv(const char *, const char *, int);
void setkey(const char *);
char *setstate(char *);
void srand(_cxgo_uint32);
void srand48(long);
void srandom(unsigned);
double strtod(const char *restrict, char **restrict);
float strtof(const char *restrict, char **restrict);
long strtol(const char *restrict, char **restrict, int);
long double strtold(const char *restrict, char **restrict);
long long strtoll(const char *restrict, char **restrict, int);
unsigned long strtoul(const char *restrict, char **restrict, int);
unsigned long long strtoull(const char *restrict, char **restrict, int);
int system(const char *);
int unlockpt(int);
int unsetenv(const char *);
size_t wcstombs(char *restrict, const wchar_t *restrict, size_t);
int wctomb(char *, wchar_t);