From 0c94c057a4ffa47915e3864f258dc4a8f760e1e2 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Wed, 31 Dec 2008 04:12:44 +0000 Subject: [PATCH] * include/bits/wordsize.h: New linux-compatibility header. --- winsup/cygwin/ChangeLog | 4 ++++ winsup/cygwin/include/bits/wordsize.h | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 winsup/cygwin/include/bits/wordsize.h diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 47bf78aa8..fe69eea93 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2008-12-30 Christopher Faylor + + * include/bits/wordsize.h: New linux-compatibility header. + 2008-12-30 Christopher Faylor * exceptions.cc (try_to_debug): Avoid creating a huge buffer on the diff --git a/winsup/cygwin/include/bits/wordsize.h b/winsup/cygwin/include/bits/wordsize.h new file mode 100644 index 000000000..38e14f85f --- /dev/null +++ b/winsup/cygwin/include/bits/wordsize.h @@ -0,0 +1,6 @@ +/* wordsize.h - Linux compatibility */ + +#ifndef _WORDSIZE_H +#define _WORDSIZE_H 1 +#define __WORDSIZE 32 +#endif /*_WORDSIZE_H*/