Deleted Added
full compact
42a43,45
> #else
> static const char rcsid[] =
> "$FreeBSD: head/usr.bin/split/split.c 68887 2000-11-19 01:44:20Z jwd $";
61c64
< long bytecnt; /* Byte count to split on. */
---
> size_t bytecnt; /* Byte count to split on. */
109c112
< if ((bytecnt = strtol(optarg, &ep, 10)) <= 0 ||
---
> if ((bytecnt = strtoq(optarg, &ep, 10)) <= 0 ||
175,176c178
< long bcnt;
< int dist, len;
---
> size_t bcnt, dist, len;