commit 8df4e975341ca8f5dd7aa17ba9fc536467c7afab
parent 1659953b0bf1329ab8c02b3d471bf57480783f47
Author: Brian Swetland <swetland@frotz.net>
Date: Sat, 14 Oct 2023 13:30:28 -0700
library: fix allocation
include stdlib in the header
Diffstat:
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/inc/library.impl.c b/inc/library.impl.c
@@ -1,6 +1,5 @@
#include <stdio.h>
-#include <stdlib.h>
#include <string.h>
#include <unistd.h>
diff --git a/inc/library.impl.h b/inc/library.impl.h
@@ -1,4 +1,5 @@
#include <stdio.h>
+#include <stdlib.h>
void fn__hexout_(t$i32 x);