summaryrefslogtreecommitdiff
path: root/lib/xalloc.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-11-13 07:45:20 +0000
committerJim Meyering <jim@meyering.net>2003-11-13 07:45:20 +0000
commit7128acc4c2a16a1900d8ed5b99ca37ce62ad93ff (patch)
tree93271d71e3a332eb536969d9ef20121466a6fa1e /lib/xalloc.h
parent7559925e7e6d07c27891a4720c31ea606ef8f8db (diff)
downloadcoreutils-7128acc4c2a16a1900d8ed5b99ca37ce62ad93ff.tar.xz
Update from gnulib.
Diffstat (limited to 'lib/xalloc.h')
-rw-r--r--lib/xalloc.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/lib/xalloc.h b/lib/xalloc.h
index 571e53c04..4b6585811 100644
--- a/lib/xalloc.h
+++ b/lib/xalloc.h
@@ -21,9 +21,6 @@
# define XALLOC_H_
# include <stddef.h>
-# if HAVE_STDINT_H
-# include <stdint.h>
-# endif
# ifndef __attribute__
# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8) || __STRICT_ANSI__
@@ -71,14 +68,11 @@ char *xstrdup (const char *str);
calculations, so the conservative dividend to use here is
SIZE_MAX - 1, since SIZE_MAX might represent an overflowed value.
However, malloc (SIZE_MAX) fails on all known hosts where
- PTRDIFF_MAX < SIZE_MAX, so do not bother to test for
+ sizeof (ptrdiff_t) <= sizeof (size_t), so do not bother to test for
exactly-SIZE_MAX allocations on such hosts; this avoids a test and
branch when S is known to be 1. */
-# if defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX
-# define xalloc_oversized(n, s) (SIZE_MAX / (s) < (n))
-# else /* SIZE_MAX might not be defined, so avoid (SIZE_MAX - 1). */
-# define xalloc_oversized(n, s) ((size_t) -2 / (s) < (n))
-# endif
+# define xalloc_oversized(n, s) \
+ ((size_t) (sizeof (ptrdiff_t) <= sizeof (size_t) ? -1 : -2) / (s) < (n))
/* These macros are deprecated; they will go away soon, and are retained
temporarily only to ease conversion to the functions described above. */