=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/less/less.h,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- src/usr.bin/less/less.h 2016/01/09 17:34:43 1.20 +++ src/usr.bin/less/less.h 2016/01/12 17:48:04 1.21 @@ -72,7 +72,6 @@ * Special types and constants. */ typedef unsigned long LWCHAR; -typedef off_t LINENUM; #define MIN_LINENUM_WIDTH 7 /* Min printing width of a line number */ #define MAX_UTF_CHAR_LEN 6 /* Max bytes in one UTF-8 char */ @@ -98,7 +97,7 @@ typedef union parg { char *p_string; int p_int; - LINENUM p_linenum; + off_t p_linenum; } PARG; struct textlist { @@ -207,5 +206,5 @@ /* Functions not included in funcs.h */ void postoa(off_t, char *, size_t); -void linenumtoa(LINENUM, char *, size_t); +void linenumtoa(off_t, char *, size_t); void inttoa(int, char *, size_t);