]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(PRIdMAX, PRIuMAX): Remove definitions.
authorJim Meyering <jim@meyering.net>
Sun, 22 Sep 2002 06:48:28 +0000 (06:48 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 22 Sep 2002 06:48:28 +0000 (06:48 +0000)
Now they're defined through system.h.

src/stat.c

index aee55135686d87ee81fd43c071feb1a5a9fa3813..ebcec0f9d9379eb140cf2650f54cbccf857a5cf2 100644 (file)
 #include <string.h>
 #include <ctype.h>
 
-#if ! defined PRIdMAX
-# if HAVE_LONG_LONG
-#  define PRIdMAX "lld"
-# else
-#  define PRIdMAX "ld"
-# endif
-#endif
-
-#if ! defined PRIuMAX
-# if HAVE_LONG_LONG
-#  define PRIuMAX "llu"
-# else
-#  define PRIuMAX "lu"
-# endif
-#endif
-
 #include "system.h"
 
 #include "closeout.h"