+2007-03-22 Bruno Haible <bruno@clisp.org>
+
+ * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
+
2007-03-23 Paul Eggert <eggert@cs.ucla.edu>
* MODULES.html.sh (File system functions): New module write-any-file.
specify hours. If fours digits are used, minutes are
also specified. */
{
+ bool neg;
+ int n;
+
val = 0;
while (*rp == ' ')
++rp;
if (*rp != '+' && *rp != '-')
return NULL;
- bool neg = *rp++ == '-';
- int n = 0;
+ neg = *rp++ == '-';
+ n = 0;
while (n < 4 && *rp >= '0' && *rp <= '9')
{
val = val * 10 + *rp++ - '0';