]> andersk Git - splint.git/blobdiff - src/globalsClause.c
Added code to support CSV output (-csv flag).
[splint.git] / src / globalsClause.c
index dd9b89273373d1dcd93347370353824781f5bd31..c32465e46ea79213cf4a2f31e7e054dae9a43874 100644 (file)
 ** 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
 */
 /*
 ** globalsClause.c
 */
 
-# include "lclintMacros.nf"
+# include "splintMacros.nf"
 # include "basic.h"
 
 extern globalsClause 
@@ -33,7 +33,7 @@ globalsClause_create (lltok tok, globSet gl)
 {
   globalsClause res = (globalsClause) dmalloc (sizeof (*res));
   res->globs = gl;
-  res->loc = lltok_stealLoc (tok);
+  res->loc = fileloc_copy (lltok_getLoc (tok));
   /*@i423@*/ return res; /* releases doesn't seem to work right here... */
 }
 
This page took 0.086924 seconds and 4 git commands to generate.