]> andersk Git - splint.git/blobdiff - src/globals.c
noexpand always false.
[splint.git] / src / globals.c
index a01bd5464e1140edca62f5e3af526b3b341251e3..a46b011024f12d775c0655dc5cad1e9a9f160ec1 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Splint - annotation-assisted static program checker
-** Copyright (C) 1994-2001 University of Virginia,
+** Copyright (C) 1994-2003 University of Virginia,
 **         Massachusetts Institute of Technology
 **
 ** This program is free software; you can redistribute it and/or modify it
 ** the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 ** MA 02111-1307, USA.
 **
-** For information on lclint: lclint-request@cs.virginia.edu
-** To report a bug: lclint-bug@cs.virginia.edu
+** For information on splint: info@splint.org
+** To report a bug: splint-bug@splint.org
 ** For more information: http://www.splint.org
 */
 /*
 ** globals.c
 */
 
-# include "lclintMacros.nf"
+# include "splintMacros.nf"
 # include "basic.h"
 
 fileloc g_currentloc;
 
-# ifndef NOLCL
 symtable g_symtab;
 /*@only@*/ lsymbolSet g_currentImports = lsymbolSet_undefined;
-# endif
 
 cstring g_codeFile = cstring_undefined;
 int g_codeLine = 0;
 
 cstring g_prevCodeFile = cstring_undefined;
 int g_prevCodeLine = 0;
-/*:open:*/ FILE *g_msgstream;
+
+/*
+** These are initialized in llmain.c.
+*/
+
+FILE *g_warningstream = NULL;
+FILE *g_messagestream = NULL;
+FILE *g_errorstream = NULL;
+FILE *g_csvstream = NULL;
 
 /*
 ** These were in llmain.c.  Most should not be globals...
@@ -48,10 +54,8 @@ int g_prevCodeLine = 0;
 
 /*@observer@*/ char *g_localSpecPath = ".";
 
-# ifndef NOLCL
 /*@only@*/ cstring g_currentSpec;
 /*@only@*/ char *g_currentSpecName;
-# endif
 
 void printCodePoint (void)
 {
This page took 0.034168 seconds and 4 git commands to generate.