summaryrefslogtreecommitdiff
path: root/lib/human.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-11-30 11:08:39 +0000
committerJim Meyering <jim@meyering.net>1997-11-30 11:08:39 +0000
commit6c075911d8939f245a4ec73c9ba079becffc7c61 (patch)
tree657b00b83084fc0230dad3a1a1c4ea0dcbb3f048 /lib/human.h
parent0fb8af56a23297147ef97f09afea4a7007072afe (diff)
downloadgnulib-6c075911d8939f245a4ec73c9ba079becffc7c61.tar.gz
filter through cppi
Diffstat (limited to 'lib/human.h')
-rw-r--r--lib/human.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/lib/human.h b/lib/human.h
index 65a25975fc..b91958bec6 100644
--- a/lib/human.h
+++ b/lib/human.h
@@ -4,15 +4,16 @@
/* A conservative bound on the maximum length of a human-readable string.
The output can be the product of the largest uintmax_t and the largest int,
so add their sizes before converting to a bound on digits. */
-#define LONGEST_HUMAN_READABLE ((sizeof (uintmax_t) + sizeof (int)) * CHAR_BIT / 3)
+# define LONGEST_HUMAN_READABLE ((sizeof (uintmax_t) + sizeof (int)) \
+ * CHAR_BIT / 3)
-#ifndef __P
-# if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
-# define __P(args) args
-# else
-# define __P(args) ()
-# endif /* GCC. */
-#endif /* Not __P. */
+# ifndef __P
+# if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
+# define __P(args) args
+# else
+# define __P(args) ()
+# endif /* GCC. */
+# endif /* Not __P. */
char *human_readable __P ((uintmax_t, char *, int, int, int));