software/libbase: malloc family decl in stdlib

This commit is contained in:
Sebastien Bourdeauducq 2012-05-28 17:20:06 +02:00
parent 56e201fd5d
commit 2428057c2f

View file

@ -58,4 +58,8 @@ void abort(void);
char *getenv(const char *name);
void *malloc(size_t size);
void free(void *ptr);
void *realloc(void *ptr, size_t size);
#endif /* __STDLIB_H */