Dan Stromberg <[EMAIL PROTECTED]> writes:

> I keep getting this weird "malloc not declared" errors when cstdlib is
> included.

Post a minimal example demonstrating the problem.
The following:

#include <cstdlib>
int main()
{
    return malloc(10) ? 0 : 1;
}

Compiles fine on AIX 5.1 with g++-3.3:

$ /usr/local/gcc-3.3/bin/g++ junk.cpp  && echo ok
ok

Cheers,
-- 
In order to understand recursion you must first understand recursion.
Remove /-nsp/ for email.
_______________________________________________
Help-gplusplus mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to