Fix ref file name in user.h
This commit is contained in:
parent
93c70ce0f9
commit
e0c3ad4d47
1 changed files with 4 additions and 2 deletions
|
@ -34,8 +34,10 @@ void printf(const char*, ...) __attribute__ ((format (printf, 1, 2)));
|
|||
char* gets(char*, int max);
|
||||
uint strlen(const char*);
|
||||
void* memset(void*, int, uint);
|
||||
void* malloc(uint);
|
||||
void free(void*);
|
||||
int atoi(const char*);
|
||||
int memcmp(const void *, const void *, uint);
|
||||
void *memcpy(void *, const void *, uint);
|
||||
|
||||
// umalloc.c
|
||||
void* malloc(uint);
|
||||
void free(void*);
|
||||
|
|
Loading…
Add table
Reference in a new issue