Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-11-11 00:17:15 +0300
committerChristopher Faylor <me@cgf.cx>2005-11-11 00:17:15 +0300
commitc845f0c182fa2a9bd2d8f9961e1968ce8d725f54 (patch)
tree0939594a0923dae4d9dbb71d6e700edba44cedba
parent2d015bd67c8ab20d1b0f9bd1d84a1dc8fd42310f (diff)
* include/endian.h: Remove USE_BSD ifdef since it is never defined on Cygwin.
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/include/endian.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 5cc4c9209..0c93d695c 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2005-11-10 Christopher Faylor <cgf@timesys.com>
+
+ * include/endian.h: Remove USE_BSD ifdef since it is never defined on
+ Cygwin.
+
2005-11-10 Corinna Vinschen <corinna@vinschen.de>
* syslog.cc (setlogmask): Don't mask the mask.
diff --git a/winsup/cygwin/include/endian.h b/winsup/cygwin/include/endian.h
index 2377a3dc0..c8b89d432 100644
--- a/winsup/cygwin/include/endian.h
+++ b/winsup/cygwin/include/endian.h
@@ -24,12 +24,12 @@ details. */
# define __BYTE_ORDER __LITTLE_ENDIAN
#endif
-#ifdef __USE_BSD
+/*#ifdef __USE_BSD*/
# define LITTLE_ENDIAN __LITTLE_ENDIAN
# define BIG_ENDIAN __BIG_ENDIAN
# define PDP_ENDIAN __PDP_ENDIAN
# define BYTE_ORDER __BYTE_ORDER
-#endif
+/*#endif*/
#if __BYTE_ORDER == __LITTLE_ENDIAN
# define __LONG_LONG_PAIR(HI, LO) LO, HI