aboutsummaryrefslogtreecommitdiffstats
path: root/src/mktime.c
diff options
context:
space:
mode:
authorUlrich Drepper1998-04-14 00:02:53 +0000
committerUlrich Drepper1998-04-14 00:02:53 +0000
commit06bd27fdf5fa529e58ce129e3d906d17b5dcda34 (patch)
treeb3b06998a92e40fccfede0d5c5bc23a0754192c6 /src/mktime.c
parent4ad8bb205e89d91ca2703641bfc602499ac6678c (diff)
downloademacs-06bd27fdf5fa529e58ce129e3d906d17b5dcda34.tar.gz
emacs-06bd27fdf5fa529e58ce129e3d906d17b5dcda34.zip
automatically generated from GPLed version
Diffstat (limited to 'src/mktime.c')
-rw-r--r--src/mktime.c4
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)