diff options
author | Jim Meyering <jim@meyering.net> | 2005-03-29 14:09:35 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-03-29 14:09:35 +0000 |
commit | 24e7f6c2482be6ee3d46efbc995a2e17819566e1 (patch) | |
tree | b41c5783f702e8fac8a8e9be945b1a2e76c15c3d | |
parent | 31927b4957de21aa157f59aa916c3db865654b13 (diff) | |
download | coreutils-24e7f6c2482be6ee3d46efbc995a2e17819566e1.tar.xz |
Remove #if-0'd-out code.
-rw-r--r-- | src/system.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/system.h b/src/system.h index 77cf30c55..9916696c5 100644 --- a/src/system.h +++ b/src/system.h @@ -839,20 +839,3 @@ ptr_align (void *ptr, size_t alignment) ((Type_max) / 10 < Accum || Accum * 10 + (Digit_val) < Accum \ ? 0 : ((Accum = Accum * 10 + (Digit_val)), 1)) \ ) - -#if 0 -#define ASSERT_ABORT(Expr) do { if (!(Expr)) abort (); } while (0) -#define DECIMAL_DIGIT_ACCUMULATE(Accum, Digit_val, Type_max, Overflow) \ - do \ - { \ - int _digit_val = Digit_val; \ - ASSERT_ABORT (0 <= _digit_val && _digit_val < 10 \ - && Accum <= Type_max); \ - /* Ensure that Type_max is the maximum value of Accum. */ \ - VERIFY_W_TYPEOF (TYPE_MAXIMUM (__typeof__ (Accum)) == (Type_max)); \ - if (!(Overflow = ((Type_max) / 10 < Accum \ - || Accum * 10 + _digit_val < Accum))) \ - Accum = Accum * 10 + _digit_val; \ - } \ - while (0) -#endif |