diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-13 20:08:57 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-13 20:08:57 -0400 |
| commit | df9096e6e509513f41473368296fa038120fff83 (patch) | |
| tree | ebb0a457dd0810286ce68cd3c5439efaab90ae4b | |
| parent | 4380039acc881703ef9d144bbf39d82da4beb936 (diff) | |
Add missing include
| -rw-r--r-- | builtins/metamethods.c | 1 |
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" |
