Parent Directory
|
Revision Log
feat: add basic utilities and more system calls
1 | rakinar2 | 47 | #ifndef PLIBC_MALLOC_H |
2 | #define PLIBC_MALLOC_H | ||
3 | |||
4 | rakinar2 | 51 | #include "stddef.h" |
5 | rakinar2 | 47 | |
6 | void *malloc (size_t size); | ||
7 | void *calloc (size_t nmemb, size_t size); | ||
8 | void *realloc (void *ptr, size_t size); | ||
9 | void free (void *ptr); | ||
10 | |||
11 | void bzero (void *ptr, size_t size); | ||
12 | |||
13 | #ifdef _PLIBC_INTERNALS | ||
14 | void __plibc_heap_reset (void); | ||
15 | #endif /* _PLIBC_INTERNALS */ | ||
16 | |||
17 | #endif /* PLIBC_MALLOC_H */ |
team@onesoftnet.eu.org | ViewVC Help |
Powered by ViewVC 1.1.26 |