Skip to content

Commit c49f18d

Browse files
committed
Fix Unix header on Windows
1 parent 9fb855d commit c49f18d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/chksum.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@
99
#include <stdio.h>
1010
#include <stdlib.h>
1111
#include <string.h>
12-
#include <strings.h>
1312
#include <unistd.h>
13+
#ifndef _WIN32
14+
#include <strings.h>
15+
#endif
1416

1517
#include "pool.h"
1618
#include "util.h"

0 commit comments

Comments
 (0)