]> git.ipfire.org Git - thirdparty/libsolv.git/commitdiff
Fix Unix header on Windows 591/head
authorAntoinePrv <AntoinePrv@users.noreply.github.com>
Wed, 4 Jun 2025 12:55:53 +0000 (14:55 +0200)
committerAntoinePrv <AntoinePrv@users.noreply.github.com>
Wed, 4 Jun 2025 12:55:53 +0000 (14:55 +0200)
src/chksum.c

index ded8d567ae5b05047eb9c402d94e08b4c11b87dd..aeb3f58510ec99ef1e97b29730bc0c7def97854f 100644 (file)
@@ -9,8 +9,10 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#include <strings.h>
 #include <unistd.h>
+#ifndef _WIN32
+#include <strings.h>
+#endif
 
 #include "pool.h"
 #include "util.h"