Author: Dann Corbit
Date: 10:26:54 08/24/05
Change:
# if !defined(SMP)
return (maloc(size)); /* Notice the missing 'l' in malloc() */
# else
return WinMalloc(size, tid);
# endif
#endif
to:
# if !defined(SMP)
return (malloc(size));
# else
return WinMalloc(size, tid);
# endif
#endif
This page took 0 seconds to execute
Last modified: Thu, 15 Apr 21 08:11:13 -0700
Current Computer Chess Club Forums at Talkchess. This site by Sean Mintz.