Skip to content

Commit 61eb682

Browse files
committed
Fix incorrect header include. The strcasecmp function is defined in
<strings.h>, not <string.h>.
1 parent 857b41a commit 61eb682

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dmiopt.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121

2222
#include <stdio.h>
23-
#include <string.h>
23+
#include <strings.h>
2424
#include <stdlib.h>
2525
#include <getopt.h>
2626

0 commit comments

Comments
 (0)