* rldefs.c: Get rid of define of SIGALRM if _WIN32 or __MSDOS__.

* Don't define ScreenCols/ScreenRows/... if cygwin32.
	* sysdep-norm.h:  Don't include <malloc.h> if cygwin32.
This commit is contained in:
Stu Grossman 1996-08-12 04:11:17 +00:00
parent 82c6139baa
commit 8633ce7a02
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
Sun Aug 11 21:06:26 1996 Stu Grossman (grossman@critters.cygnus.com)
* rldefs.c: Get rid of define of SIGALRM if _WIN32 or __MSDOS__.
* Don't define ScreenCols/ScreenRows/... if cygwin32.
* sysdep-norm.h: Don't include <malloc.h> if cygwin32.
Sun Aug 11 14:59:09 1996 Fred Fish <fnf@cygnus.com>
* rldefs.h: If __osf__is defined, include <termio.h> instead of

View File

@ -37,6 +37,6 @@ typedef struct dirent dirent;
#define _POSIX_VERSION
#endif
#ifdef _WIN32
#if defined _WIN32 && !defined __GNUC__
#include <malloc.h>
#endif