summaryrefslogtreecommitdiff
path: root/colm/global.h
diff options
context:
space:
mode:
Diffstat (limited to 'colm/global.h')
-rw-r--r--colm/global.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/colm/global.h b/colm/global.h
index 1f7a0b90..2dd6e4f1 100644
--- a/colm/global.h
+++ b/colm/global.h
@@ -42,7 +42,6 @@ extern int gblErrorCount;
std::ostream &error();
/* IO filenames and stream. */
-extern const char *outputFileName;
extern std::ostream *outStream;
extern bool generateGraphviz;
extern bool branchPointInfo;
@@ -62,16 +61,16 @@ extern std::ostream *outStream;
extern bool printStatistics;
extern int gblErrorCount;
-extern char machineMain[];
extern bool gblLibrary;
-extern const char *gblExportTo;
+extern char machineMain[];
+extern const char *exportHeaderFn;
-struct ColmLocation;
+struct colm_location;
/* Location in an input file. */
struct InputLoc
{
- InputLoc( ColmLocation *pcloc );
+ InputLoc( colm_location *pcloc );
InputLoc() : fileName(0), line(-1), col(-1) {}