]> andersk Git - splint.git/blobdiff - src/context.c
Fixed problem with handleing oldsytle function declarations.
[splint.git] / src / context.c
index 6df5dde47519fd6b84355436801a6a9b82e31192..361692a8f820e29f4b778b3336498129c9452504 100644 (file)
@@ -1864,6 +1864,14 @@ context_enterFunction (/*@exposed@*/ uentry e)
   sRef_enterFunctionScope ();
 }
 
+bool context_inOldSytleScope(void)
+{
+  if (gc.kind == CX_OLDSTYLESCOPE)
+    return TRUE;
+  else
+    return FALSE;
+}
+
 void
 context_enterOldStyleScope (void)
 {
This page took 0.033911 seconds and 4 git commands to generate.