mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 07:13:23 +00:00
doing some maintenance on the posix build system, getting in sync with reactos base.
svn path=/trunk/; revision=3940
This commit is contained in:
parent
0ab5c4ecee
commit
3028effd84
8 changed files with 282 additions and 99 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: stddef.h,v 1.4 2002/10/29 04:45:19 rex Exp $
|
||||
/* $Id: stddef.h,v 1.5 2003/01/05 18:27:19 robd Exp $
|
||||
*/
|
||||
/*
|
||||
* stddef.h
|
||||
|
@ -32,7 +32,20 @@
|
|||
|
||||
/* TYPES */
|
||||
typedef signed long int ptrdiff_t;
|
||||
typedef unsigned short int wchar_t;
|
||||
|
||||
#ifndef _WCHAR_T_
|
||||
#define _WCHAR_T_
|
||||
#define _WCHAR_T
|
||||
#define _WCHAR_T_DEFINED
|
||||
#ifndef __WCHAR_TYPE__
|
||||
#define __WCHAR_TYPE__ short unsigned int
|
||||
#endif
|
||||
#ifndef __cplusplus
|
||||
typedef __WCHAR_TYPE__ wchar_t;
|
||||
#endif /* C++ */
|
||||
#endif /* _WCHAR_T_ */
|
||||
|
||||
//typedef unsigned short int wchar_t;
|
||||
|
||||
/* CONSTANTS */
|
||||
#ifndef NULL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue