From eef45199d52c3d88114bd9f310b221378b72176f Mon Sep 17 00:00:00 2001 From: uz Date: Sat, 5 Nov 2011 19:49:34 +0000 Subject: [PATCH] Remove ldiv_t - it should only be in stdlib.h. Reported by Marc Rintsch. git-svn-id: svn://svn.cc65.org/cc65/trunk@5302 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- include/inttypes.h | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/include/inttypes.h b/include/inttypes.h index c3112ba15..dd1ba822b 100644 --- a/include/inttypes.h +++ b/include/inttypes.h @@ -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 */ @@ -52,13 +52,6 @@ -/* 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);