Rename linecmp and line-structs in join(1) and sort(1)

We will steal the names for the global functions.
diff --git a/join.c b/join.c
index caf592f..93d4b38 100644
--- a/join.c
+++ b/join.c
@@ -26,7 +26,7 @@
 	size_t len;
 };
 
-struct line {
+struct jline {
 	char *text;
 	size_t nf;
 	size_t maxf;
@@ -47,7 +47,7 @@
 struct span {
 	size_t nl;
 	size_t maxl;
-	struct line **lines;
+	struct jline **lines;
 };
 
 static char *sep = NULL;
@@ -84,9 +84,9 @@
 }
 
 static void
-swaplines(struct line *la, struct line *lb)
+swaplines(struct jline *la, struct jline *lb)
 {
-	struct line tmp;
+	struct jline tmp;
 
 	tmp = *la;
 	*la = *lb;
@@ -94,7 +94,7 @@
 }
 
 static void
-prjoin(struct line *la, struct line *lb, size_t jfa, size_t jfb)
+prjoin(struct jline *la, struct jline *lb, size_t jfa, size_t jfb)
 {
 	struct spec *sp;
 	struct field *joinfield;
@@ -149,7 +149,7 @@
 }
 
 static void
-prline(struct line *lp)
+prline(struct jline *lp)
 {
 	size_t len = strlen(lp->text);
 
@@ -160,7 +160,7 @@
 }
 
 static int
-linecmp(struct line *la, struct line *lb, size_t jfa, size_t jfb)
+jlinecmp(struct jline *la, struct jline *lb, size_t jfa, size_t jfb)
 {
 	int status;
 
@@ -179,7 +179,7 @@
 }
 
 static void
-addfield(struct line *lp, char *sp, size_t len)
+addfield(struct jline *lp, char *sp, size_t len)
 {
 	if (lp->nf >= lp->maxf) {
 		lp->fields = ereallocarray(lp->fields, (GROW * lp->maxf),
@@ -201,10 +201,10 @@
 			prjoin(spa->lines[i], spb->lines[j], jfa, jfb);
 }
 
-static struct line *
+static struct jline *
 makeline(char *s, size_t len)
 {
-	struct line *lp;
+	struct jline *lp;
 	char *sp, *beg, *end;
 	size_t i;
 	int eol = 0;
@@ -212,7 +212,7 @@
 	if (s[len-1] == '\n')
 		s[len-1] = '\0';
 
-	lp = ereallocarray(NULL, INIT, sizeof(struct line));
+	lp = ereallocarray(NULL, INIT, sizeof(struct jline));
 	lp->text = s;
 	lp->fields = ereallocarray(NULL, INIT, sizeof(struct field));
 	lp->nf = 0;
@@ -274,7 +274,7 @@
 
 	if (sp->nl >= sp->maxl) {
 		sp->lines = ereallocarray(sp->lines, (GROW * sp->maxl),
-		        sizeof(struct line *));
+		        sizeof(struct jline *));
 		sp->maxl *= GROW;
 	}
 
@@ -288,7 +288,7 @@
 {
 	sp->nl = 0;
 	sp->maxl = INIT;
-	sp->lines = ereallocarray(NULL, INIT, sizeof(struct line *));
+	sp->lines = ereallocarray(NULL, INIT, sizeof(struct jline *));
 }
 
 static void
@@ -385,7 +385,7 @@
 	addtospan(&spb, fb, RESET);
 
 	while (spa.nl && spb.nl) {
-		if ((cmp = linecmp(spa.lines[0], spb.lines[0], jfa, jfb)) < 0) {
+		if ((cmp = jlinecmp(spa.lines[0], spb.lines[0], jfa, jfb)) < 0) {
 			if (unpairsa)
 				prline(spa.lines[0]);
 			if (!addtospan(&spa, fa, RESET)) {
@@ -419,7 +419,7 @@
 					spa.nl++;
 					break;
 				}
-			} while (linecmp(spa.lines[spa.nl-1], spb.lines[0], jfa, jfb) == 0);
+			} while (jlinecmp(spa.lines[spa.nl-1], spb.lines[0], jfa, jfb) == 0);
 
 			/* read all consecutive matching lines from b */
 			do {
@@ -428,7 +428,7 @@
 					spb.nl++;
 					break;
 				}
-			} while (linecmp(spa.lines[0], spb.lines[spb.nl-1], jfa, jfb) == 0);
+			} while (jlinecmp(spa.lines[0], spb.lines[spb.nl-1], jfa, jfb) == 0);
 
 			if (pairs)
 				prspanjoin(&spa, &spb, jfa, jfb);
diff --git a/sort.c b/sort.c
index 6479461..9b88b94 100644
--- a/sort.c
+++ b/sort.c
@@ -171,7 +171,7 @@
 }
 
 static int
-linecmp(struct linebufline *a, struct linebufline *b)
+slinecmp(struct linebufline *a, struct linebufline *b)
 {
 	int res = 0;
 	long double x, y;
@@ -218,7 +218,7 @@
 	if (!prev.data && (prev.len = getline(&prev.data, &prevsize, fp)) < 0)
 		eprintf("getline:");
 	while ((cur.len = getline(&cur.data, &cursize, fp)) > 0) {
-		if (uflag > linecmp(&cur, &prev)) {
+		if (uflag > slinecmp(&cur, &prev)) {
 			if (!Cflag) {
 				weprintf("disorder %s: ", fname);
 				fwrite(cur.data, 1, cur.len, stderr);
@@ -412,11 +412,11 @@
 			eprintf("fopen %s:", outfile);
 
 		qsort(linebuf.lines, linebuf.nlines, sizeof(*linebuf.lines),
-				(int (*)(const void *, const void *))linecmp);
+				(int (*)(const void *, const void *))slinecmp);
 
 		for (i = 0; i < linebuf.nlines; i++) {
 			if (!uflag || i == 0 ||
-			    linecmp(&linebuf.lines[i], &linebuf.lines[i - 1])) {
+			    slinecmp(&linebuf.lines[i], &linebuf.lines[i - 1])) {
 				fwrite(linebuf.lines[i].data, 1,
 				       linebuf.lines[i].len, ofp);
 			}