Before declaring h_errno, do not check for Win32 only. Instead, do check

whether h_errno is a macro.
This commit is contained in:
Martin v. Löwis 2001-07-23 07:27:16 +00:00
parent 4c81d60fcb
commit fe36fc91ed
2 changed files with 2 additions and 2 deletions

View file

@ -1789,7 +1789,7 @@ gethost_common(struct hostent *h, struct sockaddr *addr, int alen, int af)
if (h == NULL) {
/* Let's get real error message to return */
#ifndef MS_WIN32
#ifndef h_errno
extern int h_errno;
#endif
PyH_Err(h_errno);