summaryrefslogtreecommitdiff
path: root/src/stat.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-09-22 06:48:28 +0000
committerJim Meyering <jim@meyering.net>2002-09-22 06:48:28 +0000
commitfab46cb4660127ed73c0fc44e540814d8fe50c62 (patch)
tree516dd3a0df4b75b85b4600f3b0ac5e656cdc1784 /src/stat.c
parent003ab9a58d36f9690a78e05048ef92b030893ac4 (diff)
downloadcoreutils-fab46cb4660127ed73c0fc44e540814d8fe50c62.tar.xz
(PRIdMAX, PRIuMAX): Remove definitions.
Now they're defined through system.h.
Diffstat (limited to 'src/stat.c')
-rw-r--r--src/stat.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/stat.c b/src/stat.c
index aee551356..ebcec0f9d 100644
--- a/src/stat.c
+++ b/src/stat.c
@@ -46,22 +46,6 @@
#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"