9 lines
144 B
C
9 lines
144 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "newmem.h"
|
|
|
|
int main(void) {
|
|
char* t = (char*)newmalloc(15);
|
|
|
|
printf("%d", t != NULL);
|
|
} |