]> git.sur5r.net Git - cc65/commitdiff
Added T_SIZE_T as an alias for T_UINT
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 4 Jun 2004 17:52:19 +0000 (17:52 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 4 Jun 2004 17:52:19 +0000 (17:52 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3090 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/datatype.c
src/cc65/datatype.h

index 1c17c27960007cdb3ad02da11436b774d5b96b78..0cbac19af5a2219ef007fee0279c46f1c2d1feee 100644 (file)
@@ -63,7 +63,7 @@ type type_uint []     = { T_UINT,     T_END };
 type type_long []      = { T_LONG,     T_END };
 type type_ulong []     = { T_ULONG,    T_END };
 type type_void []      = { T_VOID,     T_END };
-type type_size_t []    = { T_UINT,     T_END };
+type type_size_t []    = { T_SIZE_T,   T_END };
 
 
 
index 76bd018e1bf10989c7a772af45393a5c0b272470..f921a8e45a44671c3714823eb117127e2ae68859 100644 (file)
@@ -6,10 +6,10 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 1998-2002 Ullrich von Bassewitz                                       */
-/*               Wacholderweg 14                                             */
-/*               D-70597 Stuttgart                                           */
-/* EMail:        uz@musoftware.de                                            */
+/* (C) 1998-2004 Ullrich von Bassewitz                                       */
+/*               Römerstrasse 52                                             */
+/*               D-70794 Filderstadt                                         */
+/* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
@@ -128,6 +128,8 @@ enum {
     T_PTR              = T_TYPE_PTR      | T_CLASS_PTR    | T_SIGN_NONE     | T_SIZE_NONE,
     T_FUNC             = T_TYPE_FUNC     | T_CLASS_FUNC   | T_SIGN_NONE     | T_SIZE_NONE,
 
+    /* Aliases */
+    T_SIZE_T    = T_UINT,
 };