10 lines
122 B
C
10 lines
122 B
C
#include <stddef.h>
|
|
#include "inc/malloc.h"
|
|
|
|
int
|
|
main(void) {
|
|
void* test = malloc(4);
|
|
(void)test;
|
|
return 0;
|
|
}
|