We have the following code that is incorrectly flagged -: void foo(int bar, va_list ap) { va_list ap2; va_copy(ap2, ap); // Do something here with ap2... va_end(ap2); } It reports ap2 is used at va_end(ap2) before va_start(), however va_start is not necessary with va_copy because it explicitly initialises the va_list (and is documented to do so..)
# adjust to build with recent AROS changes (ico...
adapt to recent AROS changes
use cxx flags for c++ code.
since USE_GL is defined in sysconfig.h, it does...
user USER_LDFLAGS. don't link against libGL by ...
use the correct flags
only perform permits if UNLOCKTDNESTCNT is defi...