summaryrefslogtreecommitdiff
path: root/dmiopt.c
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2005-09-24 08:45:06 +0000
committerJean Delvare <jdelvare@suse.de>2005-09-24 08:45:06 +0000
commit61eb682833bac7678e072a336337f27ddbee7e23 (patch)
treeff354166eabd2aef34b79dd569d5f28d00a902d8 /dmiopt.c
parent857b41a74ed80660a0e260cb6094018a95d9627d (diff)
downloaddmidecode-git-61eb682833bac7678e072a336337f27ddbee7e23.tar.gz
Fix incorrect header include. The strcasecmp function is defined in
<strings.h>, not <string.h>.
Diffstat (limited to 'dmiopt.c')
-rw-r--r--dmiopt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmiopt.c b/dmiopt.c
index 453585b..c4781b4 100644
--- a/dmiopt.c
+++ b/dmiopt.c
@@ -20,7 +20,7 @@
*/
#include <stdio.h>
-#include <string.h>
+#include <strings.h>
#include <stdlib.h>
#include <getopt.h>