aboutsummaryrefslogtreecommitdiffstats
path: root/support.c
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-06-15 21:13:42 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-06-15 21:13:42 -0400
commitc278aa4e696359764848edd66c6bb457e248d43e (patch)
tree7ea9fc21666f1e0abc09799ef9e5c7b1d0b3346b /support.c
parent6be79eda61b3c64b38528c023845991a0cb4a274 (diff)
readme update; use CC in Makefile
Diffstat (limited to 'support.c')
-rw-r--r--support.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/support.c b/support.c
index 44a39e4..44b4583 100644
--- a/support.c
+++ b/support.c
@@ -43,7 +43,7 @@ void eq()
void cons()
{
int32_t *st = &stack;
- int32_t *pair = malloc(2 * sizeof(int32_t));
+ int32_t *pair = (int32_t *)malloc(2 * sizeof(int32_t));
--sp;
pair[0] = st[sp];
pair[1] = st[sp - 1];