]> git.sur5r.net Git - cc65/blobdiff - include/inttypes.h
Atari colors into _gtia.h; NMIRES/NMIST as union
[cc65] / include / inttypes.h
index c3112ba15b6540e7857193e5b9ed3be6eee56973..65003f8870386f89fa7062b973abc73ad3cd3315 100644 (file)
@@ -6,7 +6,7 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2002-2009, Ullrich von Bassewitz                                      */
+/* (C) 2002-2011, Ullrich von Bassewitz                                      */
 /*                Roemerstrasse 52                                           */
 /*                D-70794 Filderstadt                                        */
 /* EMail:         uz@cc65.org                                                */
@@ -34,9 +34,9 @@
 
 
 /* Note: This file is not fully ISO 9899-1999 compliant because cc65 lacks
- * a 64 bit data types and is not able to return structs > 4 bytes. The
- * declarations have been adjusted accordingly or left out.
- */
+** a 64 bit data types and is not able to return structs > 4 bytes. The
+** declarations have been adjusted accordingly or left out.
+*/
 
 
 
 
 
 
-/* Return type of the imaxdiv function (which currently doesn't exist) */
-typedef struct {
-    intmax_t rem;
-    intmax_t quot;
-} ldiv_t;
-
-
 /* Standard functions */
 intmax_t __fastcall__ imaxabs (intmax_t val);
 intmax_t __fastcall__ strtoimax (const char* nptr, char** endptr, int base);