* libc/ctype/ctype_.c: Remove checks for deprecated __CYGWIN32__.

* libc/include/stdio.h: Ditto.
	* libc/include/sys/config.h: Ditto.
	* libc/stdio/mktemp.c: Ditto.
This commit is contained in:
Corinna Vinschen
2003-05-13 09:46:48 +00:00
parent 5d575f7dcd
commit 8a4b4764b8
5 changed files with 12 additions and 5 deletions

View File

@ -155,7 +155,7 @@ _DEFUN (_gettemp, (ptr, path, doopen),
if ((*doopen = _open_r (ptr, path, O_CREAT | O_EXCL | O_RDWR, 0600))
>= 0)
return 1;
#if defined(__CYGWIN32__) || defined(__CYGWIN__)
#if defined(__CYGWIN__)
if (ptr->_errno != EEXIST && ptr->_errno != EACCES)
#else
if (ptr->_errno != EEXIST)