Skip to content

Commit 75d1a74

Browse files
authored
Add files via upload
0 parents  commit 75d1a74

File tree

3 files changed

+821
-0
lines changed

3 files changed

+821
-0
lines changed

main.c

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#include <stdio.h>
2+
#include "sfmm.h"
3+
4+
int main(int argc, char const *argv[]) {
5+
double* ptr = sf_malloc(sizeof(double));
6+
7+
*ptr = 320320320e-320;
8+
9+
printf("%f\n", *ptr);
10+
11+
sf_free(ptr);
12+
13+
return EXIT_SUCCESS;
14+
}

0 commit comments

Comments
 (0)