Hi, everyone!

Look at the source codes,

--------
/* #define WIN32 */
#ifdef WIN32
#define MORECORE wsbrk
#endif
--------

Such is the comments,

--------
WIN32 (default: undefined)
Define this on MS win (95, nt) platforms to compile in sbrk emulation.
--------

I have two questions,

1. What means WIN32? When the variable "WIN32" becomes
defined? When it is not defined?

2. What means "sbrk" in the comment? What means "wsbrk"?

Btw: the software is written for both Windows and Linux
platforms.

Cheers,
George