add a prototype for memset() because gcc/clang/whatever on macos ventura gets a sad when it doesn't see one

This commit is contained in:
jessica parsons
2025-09-11 12:58:45 -07:00
parent c214286f91
commit ff09a191cd
+2
View File
@@ -7,6 +7,8 @@
#include <stdlib.h> #include <stdlib.h>
#include "config.h" #include "config.h"
extern void* memset(void*,int,size_t);
#define MAGIC 0x1f2e3d4c #define MAGIC 0x1f2e3d4c
struct alist { int magic, size, index; int *end; struct alist *next, *last; }; struct alist { int magic, size, index; int *end; struct alist *next, *last; };