Include <string.h> instead of <strings.h>

This commit is contained in:
Peter De Wachter 2016-01-23 15:48:25 +01:00
parent ff868a98cb
commit dfaf049859
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@
#include "operandStuff.h" #include "operandStuff.h"
#include "semanticMisc.h" #include "semanticMisc.h"
#include <strings.h> #include <string.h>
/* /*

View File

@ -30,7 +30,7 @@
#include "slinkyTypes.h" #include "slinkyTypes.h"
#include "slinkyGlobals.h" #include "slinkyGlobals.h"
#include "slinkyExpressions.h" #include "slinkyExpressions.h"
#include <strings.h> #include <string.h>
#define getSymbol() ((symbolType *)getNumber()) #define getSymbol() ((symbolType *)getNumber())