commit 087c633307b818c0bd30579ba0a805e48e530cd3
parent eb09f99efa9107704d1903abe8aa69fe9d298b3a
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Mon, 4 Jun 2012 21:01:16 +0200
Added string.h to symbol.c
It is needed by strcmp definition
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/symbol.c b/symbol.c
@@ -1,6 +1,6 @@
-#include <stddef.h>
+#include <string.h>
#include "symbol.h"
@@ -97,4 +97,3 @@ struct symbol *findsym(struct symhash *h, char *s, unsigned char hash)
}
return NULL;
}
-