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:
authorChris Sutcliffe <ir0nh34d@users.sourceforge.net>2010-12-27 22:59:54 +0300
committerChris Sutcliffe <ir0nh34d@users.sourceforge.net>2010-12-27 22:59:54 +0300
commit83304a3ecc3c37ca16420204131df40d048022fa (patch)
tree2d20fbe4b028fa169afae8121ccdfeb0b18bac85 /winsup/w32api/include
parent39e8c3f232c8a30617492cfe3bad87c44a39384c (diff)
2010-12-27 Seth Jackson <sethj@users.sourceforge.net>
* include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define.
Diffstat (limited to 'winsup/w32api/include')
-rw-r--r--winsup/w32api/include/basetsd.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/winsup/w32api/include/basetsd.h b/winsup/w32api/include/basetsd.h
index d9c375dd9..91d9da748 100644
--- a/winsup/w32api/include/basetsd.h
+++ b/winsup/w32api/include/basetsd.h
@@ -47,10 +47,14 @@
#ifdef __cplusplus
extern "C" {
#endif
+typedef signed char INT8;
+typedef signed short INT16;
typedef int LONG32, *PLONG32;
#ifndef XFree86Server
typedef int INT32, *PINT32;
#endif /* ndef XFree86Server */
+typedef unsigned char UINT8;
+typedef unsigned short UINT16;
typedef unsigned int ULONG32, *PULONG32;
typedef unsigned int DWORD32, *PDWORD32;
typedef unsigned int UINT32, *PUINT32;