diff options
author | Wilson Birney <wpb@360scada.com> | 2024-08-06 06:00:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-06 11:00:47 +0100 |
commit | aa0496f69b44377b0c443a90f81a8ecf151ff039 (patch) | |
tree | db241edb49b0aceebb29d176b1c4cc2d940ebfee | |
parent | 4ee22ab05e256510c3bccefb1e7f3c04ac11e865 (diff) |
Add <cstring> include to services.h to fix build on some musl systems.
Co-authored-by: blackbeard420 <blackbeard@blackbeard420.me>
-rw-r--r-- | include/services.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/services.h b/include/services.h index 280d34554..e8875daa5 100644 --- a/include/services.h +++ b/include/services.h @@ -16,6 +16,7 @@ #include <cstdint> #include <cstdio> #include <cstdlib> +#include <cstring> #include <algorithm> #include <bitset> |