Cleanup use of predefined data types / defines

git-svn-id: svn://svn.cc65.org/cc65/trunk@2342 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-08-16 08:23:01 +00:00
parent cc389a3911
commit c52034c59a
5 changed files with 43 additions and 35 deletions

View File

@@ -1,15 +1,15 @@
/*****************************************************************************/
/* */
/* stddef.h */
/* stddef.h */
/* */
/* Common definitions */
/* Common definitions */
/* */
/* */
/* */
/* (C) 1998-2002 Ullrich von Bassewitz */
/* Wacholderweg 14 */
/* D-70597 Stuttgart */
/* EMail: uz@musoftware.de */
/* (C) 1998-2003 Ullrich von Bassewitz */
/* R<EFBFBD>merstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@@ -39,24 +39,24 @@
/* Standard data types */
#ifndef _PTRDIFF_T
#define _PTRDIFF_T
#ifndef _HAVE_ptrdiff_t
#define _HAVE_ptrdiff_t
typedef int ptrdiff_t;
#endif
#ifndef _WCHAR_T
#define _WCHAR_T
#ifndef _HAVE_wchar_t
#define _HAVE_wchar_t
typedef unsigned short wchar_t;
#endif
#ifndef _SIZE_T
#define _SIZE_T
#ifndef _HAVE_size_t
#define _HAVE_size_t
typedef unsigned size_t;
#endif
/* NULL pointer */
#ifdef NULL
# undef NULL
#endif
#ifndef _HAVE_NULL
#define NULL 0
#define _HAVE_NULL
#endif
/* offsetof macro */
#define offsetof(type, member) (size_t) (&((type*) 0)->member)
@@ -68,4 +68,3 @@ typedef unsigned size_t;