mirror of
https://github.com/Museum-of-Art-and-Digital-Entertainment/macross.git
synced 2024-11-23 02:33:48 +00:00
Add missing <string.h> includes
This commit is contained in:
parent
dfaf049859
commit
8e5376efd9
@ -34,6 +34,8 @@
|
||||
#include "expressionSemantics.h"
|
||||
#include "semanticMisc.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
operandType *dbOperand; /* safe temps for dbx hacking */
|
||||
expressionType *dbExpression;
|
||||
symbolTableEntryType *dbSymbol;
|
||||
|
@ -30,6 +30,8 @@
|
||||
#include "macrossTypes.h"
|
||||
#include "macrossGlobals.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#define isAlphaNumeric(c) (alphaNumericCharacterTable[c])
|
||||
|
||||
extern int yydebug;
|
||||
|
@ -31,6 +31,8 @@
|
||||
#include "macrossGlobals.h"
|
||||
#include "listing.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
static char lineBuffer1[LINE_BUFFER_SIZE];
|
||||
static char lineBuffer2[LINE_BUFFER_SIZE];
|
||||
int cumulativeLineNumber = 0;
|
||||
|
2
object.c
2
object.c
@ -30,6 +30,8 @@
|
||||
#include "macrossTypes.h"
|
||||
#include "macrossGlobals.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
static int symbolTableSize;
|
||||
static int symbolTableStringSize;
|
||||
bool encodingFunction;
|
||||
|
@ -34,6 +34,8 @@
|
||||
#include "y.tab.h"
|
||||
#include "parserMisc.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
statementType *
|
||||
addLabelToStatement(labelList, statement)
|
||||
labelListType *labelList;
|
||||
|
@ -35,6 +35,8 @@
|
||||
#include "semanticMisc.h"
|
||||
#include "expressionSemantics.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#define expansionOff() {saveExpansion=expandMacros; expandMacros=FALSE;}
|
||||
#define expansionOn() expandMacros=saveExpansion;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user