> >> int bar(void)
 > >> {
 > >>     int a[foo()];
 > >>     ...
 > >> }
 >
 > I guess it is a bug in lint?  Is there a directive
 > I can use to suppress lint warning in this case?

Seems simpler to workaround it by doing:

   int bar(void)
   {
        int acnt = foo();
        int a[acnt];

   }

--
meem


Reply via email to