diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mktime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mktime.c b/src/mktime.c index b852951458e..de5b47ddeff 100644 --- a/src/mktime.c +++ b/src/mktime.c | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | Contributed by Paul Eggert (eggert@twinsun.com). | 2 | Contributed by Paul Eggert (eggert@twinsun.com). |
| 3 | 3 | ||
| 4 | NOTE: The canonical source of this file is maintained with the GNU C Library. | 4 | NOTE: The canonical source of this file is maintained with the GNU C Library. |
| 5 | Bugs can be reported to bug-glibc@prep.ai.mit.edu. | 5 | Bugs can be reported to bug-glibc@gnu.org. |
| 6 | 6 | ||
| 7 | This program is free software; you can redistribute it and/or modify it | 7 | This program is free software; you can redistribute it and/or modify it |
| 8 | under the terms of the GNU General Public License as published by the | 8 | under the terms of the GNU General Public License as published by the |
| @@ -79,7 +79,7 @@ | |||
| 79 | It is necessary at least when t == time_t. */ | 79 | It is necessary at least when t == time_t. */ |
| 80 | #define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \ | 80 | #define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \ |
| 81 | ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0)) | 81 | ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0)) |
| 82 | #define TYPE_MAXIMUM(t) (~ (t) 0 - TYPE_MINIMUM (t)) | 82 | #define TYPE_MAXIMUM(t) ((t) (~ (t) 0 - TYPE_MINIMUM (t))) |
| 83 | 83 | ||
| 84 | #ifndef INT_MIN | 84 | #ifndef INT_MIN |
| 85 | # define INT_MIN TYPE_MINIMUM (int) | 85 | # define INT_MIN TYPE_MINIMUM (int) |