* m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
for the Sun C++ compiler.
+2009-01-15 Albert Chin-A-Young <china@thewrittenword.com>
+
+ mktime.m4: remove K&R-style function prototypes
+ * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
+ for the Sun C++ compiler.
+
2009-01-14 Bruno Haible <bruno@clisp.org>
* lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
}
static int
-mktime_test1 (now)
- time_t now;
+mktime_test1 (time_t now)
{
struct tm *lt;
return ! (lt = localtime (&now)) || mktime (lt) == now;
}
static int
-mktime_test (now)
- time_t now;
+mktime_test (time_t now)
{
return (mktime_test1 (now)
&& mktime_test1 ((time_t) (time_t_max - now))
}
static int
-bigtime_test (j)
- int j;
+bigtime_test (int j)
{
struct tm tm;
time_t now;