software/libbase: malloc family decl in stdlib
This commit is contained in:
parent
56e201fd5d
commit
2428057c2f
|
@ -58,4 +58,8 @@ void abort(void);
|
||||||
|
|
||||||
char *getenv(const char *name);
|
char *getenv(const char *name);
|
||||||
|
|
||||||
|
void *malloc(size_t size);
|
||||||
|
void free(void *ptr);
|
||||||
|
void *realloc(void *ptr, size_t size);
|
||||||
|
|
||||||
#endif /* __STDLIB_H */
|
#endif /* __STDLIB_H */
|
||||||
|
|
Loading…
Reference in New Issue