aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Luck <tony.luck@intel.com>2022-03-21 09:47:54 -0700
committerTony Luck <tony.luck@intel.com>2022-03-21 09:47:54 -0700
commite8b04612190b5fd221e4985ba6a02742543b99b1 (patch)
treeb2b4c61cd6b88cb275f2ce5ed3964e17d940aad1
parent38f47153c2c1679b72d1f1039ee27f636c466701 (diff)
downloadras-tools-e8b04612190b5fd221e4985ba6a02742543b99b1.tar.gz
Add #include <string.h> to proc_interrupt.c
Complier is grousing about missing prototypes for strncmp() Signed-off-by: Tony Luck <tony.luck@intel.com>
-rw-r--r--proc_interrupt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/proc_interrupt.c b/proc_interrupt.c
index eca5a03..eaaae88 100644
--- a/proc_interrupt.c
+++ b/proc_interrupt.c
@@ -10,6 +10,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
+#include <string.h>
static long sumint(char *s)
{