#ifndef lint
static const char rcsid[] =
- "$Id$";
+ "$FreeBSD$";
#endif /* not lint */
#include <stdio.h>
++str;
if (numerics(str)) {
- val = strtol(str, &p, 0);
- dt = val ? val : dt;
+ dt = strtol(str, &p, 0);
} else if (*str == '+' || *str == '-') {
val = strtol(str, &p, 0);
switch (*p) {