CSE320/hw3/src/main.c

14 lines
213 B
C
Raw Normal View History

#include <stdio.h>
#include "sfmm.h"
int main(int argc, char const *argv[]) {
2022-03-25 20:50:24 -04:00
sf_set_magic(0x0);
sf_errno = 0;
size_t sz = sizeof(int);
int *x = sf_malloc(sz);
*x = 4;
return EXIT_SUCCESS;
}