]> git.sur5r.net Git - cc65/commitdiff
Remove ldiv_t - it should only be in stdlib.h. Reported by Marc Rintsch.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 5 Nov 2011 19:49:34 +0000 (19:49 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 5 Nov 2011 19:49:34 +0000 (19:49 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5302 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/inttypes.h

index c3112ba15b6540e7857193e5b9ed3be6eee56973..dd1ba822b7eca1a796cb502590cf44138f6bb336 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                                                */
 
 
 
-/* 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);