]> andersk Git - splint.git/blobdiff - src/context.c
Pushed back constraintResolve.c to the previous version.
[splint.git] / src / context.c
index 82be4ba7a317fbc6cccebf39463e0f256af244b2..bb24cab4c78fffdd952585bb6f50f9c87341a84f 100644 (file)
@@ -4602,6 +4602,29 @@ bool context_inLCLLib (void)
   return (gc.kind == CX_LCLLIB);
 }
 
+
+/*drl add these 3/5/2003*/
+static bool inSizeof = FALSE;
+
+bool context_inSizeof (void)
+{
+  return (inSizeof);
+}
+
+void context_enterSizeof (void)
+{
+  DPRINTF((message("context_enterSizeof ") ) );
+  inSizeof = TRUE;
+}
+
+void context_leaveSizeof (void)
+{ 
+  DPRINTF((message("context_leaveSizeof ") ));
+  inSizeof = FALSE;
+}
+/*end function added 3/5/2003*/
+
+
 bool context_inImport (void)
 {
   return (gc.inimport);
This page took 0.032367 seconds and 4 git commands to generate.