Deleted Added
full compact
15c15
< "$FreeBSD: head/bin/test/test.c 91737 2002-03-06 11:20:13Z maxim $";
---
> "$FreeBSD: head/bin/test/test.c 93345 2002-03-28 16:30:42Z ache $";
23a24
> #include <inttypes.h>
173c174
< static long long getq(const char *);
---
> static intmax_t getq(const char *);
477c478
< static long long
---
> static intmax_t
481c482
< long long r;
---
> intmax_t r;
484c485
< r = strtoll(s, &p, 10);
---
> r = strtoimax(s, &p, 10);
505c506
< long long q1, q2;
---
> intmax_t q1, q2;