mirror of
https://github.com/ZeroOSProject/ZeroOS.git
synced 2026-09-13 00:24:41 +08:00
17 lines
312 B
C
17 lines
312 B
C
#ifndef ZEROOS_STDLIB_H_
|
|
#define ZEROOS_STDLIB_H_
|
|
|
|
#include <stddef.h>
|
|
|
|
void *ext4_user_malloc(size_t size);
|
|
void *ext4_user_calloc(size_t count, size_t size);
|
|
void ext4_user_free(void *ptr);
|
|
void qsort(
|
|
void *base,
|
|
size_t nmemb,
|
|
size_t size,
|
|
int (*compar)(const void *, const void *)
|
|
);
|
|
|
|
#endif
|