(TYPE_MAXIMUM): Update from system.h.
authorJim Meyering <jim@meyering.net>
Sun, 12 Apr 1998 09:39:30 +0000 (09:39 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 12 Apr 1998 09:39:30 +0000 (09:39 +0000)
lib/mktime.c

index a65cd38..359cfd3 100644 (file)
@@ -80,7 +80,7 @@
    It is necessary at least when t == time_t.  */
 #define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \
                              ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
-#define TYPE_MAXIMUM(t) (~ (t) 0 - TYPE_MINIMUM (t))
+#define TYPE_MAXIMUM(t) ((t) (~ (t) 0 - TYPE_MINIMUM (t)))
 
 #ifndef INT_MIN
 # define INT_MIN TYPE_MINIMUM (int)