Raymond Toy pushed to branch master at cmucl / cmucl
Commits: d98b3882 by Raymond Toy at 2021-07-06T16:10:10-07:00 Include string.h to declare memcmp
x86-arch.c uses memcmp without declaring it. Noticed on macos, but not on linux.
- - - - -
1 changed file:
- src/lisp/x86-arch.c
Changes:
===================================== src/lisp/x86-arch.c ===================================== @@ -7,6 +7,7 @@
#include <stdio.h> #include <stdlib.h> +#include <string.h>
#include "lisp.h" #include "globals.h"
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/d98b3882b12575923c7bc0d2...