Mercurial > hg > xemacs-beta
comparison src/sysfile.h @ 4863:5ab6dc5d789e
Fix EOVERFLOW breakage under Visual Studio 6
author | Vin Shelton <acs@xemacs.org> |
---|---|
date | Thu, 14 Jan 2010 20:34:28 -0500 |
parents | 95c4ced5c07c |
children | 19a72041c5ed |
comparison
equal
deleted
inserted
replaced
4862:7ac51121843b | 4863:5ab6dc5d789e |
---|---|
34 | 34 |
35 #include <errno.h> | 35 #include <errno.h> |
36 | 36 |
37 #ifndef WIN32_NATIVE | 37 #ifndef WIN32_NATIVE |
38 # include <sys/errno.h> /* <errno.h> does not always imply this */ | 38 # include <sys/errno.h> /* <errno.h> does not always imply this */ |
39 #endif | |
40 | |
41 /* EOVERFLOW isn't defined on native Windows under VC6 */ | |
42 #ifndef EOVERFLOW | |
43 # define EOVERFLOW 10139 | |
39 #endif | 44 #endif |
40 | 45 |
41 #ifdef HAVE_UNISTD_H | 46 #ifdef HAVE_UNISTD_H |
42 # include <unistd.h> | 47 # include <unistd.h> |
43 #endif | 48 #endif |