aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-13 20:08:57 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-13 20:08:57 -0400
commitdf9096e6e509513f41473368296fa038120fff83 (patch)
treeebb0a457dd0810286ce68cd3c5439efaab90ae4b
parent4380039acc881703ef9d144bbf39d82da4beb936 (diff)
Add missing include
-rw-r--r--builtins/metamethods.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/builtins/metamethods.c b/builtins/metamethods.c
index 9d5bfcaa..9b0560ab 100644
--- a/builtins/metamethods.c
+++ b/builtins/metamethods.c
@@ -1,6 +1,7 @@
// Metamethods are methods that all types share for hashing, equality, comparison, and textifying
#include <stdint.h>
+#include <string.h>
#include "arrays.h"
#include "channels.h"