Merge pull request #1060 from orbea/new_dynarec

src: fix the new_dynarec with musl
This commit is contained in:
Richard Goedeken 2024-01-24 22:09:35 -08:00 committed by GitHub
commit 860fac3fba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,10 +22,10 @@
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h> // needed for u_int, u_char, etc
#include <assert.h>
#if defined(__APPLE__)
#include <sys/types.h> // needed for u_int, u_char, etc
#define MAP_ANONYMOUS MAP_ANON
#endif