On Friday, Oct 31, 2003, at 23:35 US/Eastern, David Brown wrote:
{
int labels[20];
int names[1];
float num[1];
These variables in main are probably the cause of the overflow, not the
static ones. You might just try declaring 'names' and 'num' to be
static, but I wo
On Friday, Oct 31, 2003, at 23:38 US/Eastern, Charles Lepple wrote:
Depending on how much you want to mess with the source, you could
rename the main function to something else, and create a new main
function which does the setrlimit call and then calls the old main
function.
Yes! That solved