diff -r 0dfb940169a9 support/pop/popser.c
--- a/support/pop/popser.c	Wed Aug 29 05:30:39 2012 +0900
+++ b/support/pop/popser.c	Wed Aug 29 05:34:31 2012 +0900
@@ -259,7 +259,7 @@
 extern	int	mbx_read ();
 
 static int	setup(), setupaux(), read_map(), read_file(), pmbx_size();
-static int	quitaux(), quitfile(), respond(), getline();
+static int	quitaux(), quitfile(), respond(), mh_getline();
 static	m_gMsgs(), multiline(), multiend(), putline();
 /*  */
 
@@ -410,7 +410,7 @@
     (void) respond (OK, "%s ready %s", server, timestamp);
 
     for (mystate = auth1; mystate != halt && mystate != error;)
-	switch (getline (buffer, sizeof buffer, input)) {
+	switch (mh_getline (buffer, sizeof buffer, input)) {
 	    case OK: 
 		if ((v = getvector (buffer, vec)) == NULL)
 		    continue;
@@ -1850,7 +1850,7 @@
 
 /*  */
 
-static int  getline (s, n, iop)
+static int  mh_getline (s, n, iop)
 register char  *s;
 register int	n;
 register FILE  *iop;
diff -r 0dfb940169a9 uip/popsbr.c
--- a/uip/popsbr.c	Wed Aug 29 05:30:39 2012 +0900
+++ b/uip/popsbr.c	Wed Aug 29 05:34:31 2012 +0900
@@ -64,7 +64,7 @@
 static	int	command(), multiline();
 #endif
 
-static int	getline();
+static int	mh_getline();
 static putline();
 
 #ifdef NNTP
@@ -177,7 +177,7 @@
 
     (void) signal (SIGPIPE, SIG_IGN);
 
-    switch (getline (response, sizeof response, input)) {
+    switch (mh_getline (response, sizeof response, input)) {
 	case OK: 
 	    if (poprint)
 		fprintf (stderr, "<--- %s\n", response);
@@ -620,7 +620,7 @@
     if (putline (buffer, output) == NOTOK)
 	return NOTOK;
 
-    switch (getline (response, sizeof response, input)) {
+    switch (mh_getline (response, sizeof response, input)) {
 	case OK: 
 	    if (poprint)
 		fprintf (stderr, "<--- %s\n", response);
@@ -646,7 +646,7 @@
 #endif
     char    buffer[BUFSIZ + TRMLEN];
 
-    if (getline (buffer, sizeof buffer, input) != OK)
+    if (mh_getline (buffer, sizeof buffer, input) != OK)
 	return NOTOK;
 #ifdef	DEBUG
     if (poprint)
@@ -666,7 +666,7 @@
 
 /*  */
 
-static int  getline (s, n, iop)
+static int  mh_getline (s, n, iop)
 char   *s;
 int     n;
 FILE * iop;
diff -r 0dfb940169a9 uip/pshsbr.c
--- a/uip/pshsbr.c	Wed Aug 29 05:30:39 2012 +0900
+++ b/uip/pshsbr.c	Wed Aug 29 05:34:31 2012 +0900
@@ -63,7 +63,7 @@
 static	int	command(), multiline();
 #endif
 
-static int	getline();
+static int	mh_getline();
 static putline();
 
 #ifdef NNTP
@@ -176,7 +176,7 @@
 
     (void) signal (SIGPIPE, SIG_IGN);
 
-    switch (getline (response, sizeof response, input)) {
+    switch (mh_getline (response, sizeof response, input)) {
 	case OK: 
 	    if (poprint)
 		fprintf (stderr, "<--- %s\n", response);
@@ -619,7 +619,7 @@
     if (putline (buffer, output) == NOTOK)
 	return NOTOK;
 
-    switch (getline (response, sizeof response, input)) {
+    switch (mh_getline (response, sizeof response, input)) {
 	case OK: 
 	    if (poprint)
 		fprintf (stderr, "<--- %s\n", response);
@@ -645,7 +645,7 @@
 #endif
     char    buffer[BUFSIZ + TRMLEN];
 
-    if (getline (buffer, sizeof buffer, input) != OK)
+    if (mh_getline (buffer, sizeof buffer, input) != OK)
 	return NOTOK;
 #ifdef	DEBUG
     if (poprint)
@@ -665,7 +665,7 @@
 
 /*  */
 
-static int  getline (s, n, iop)
+static int  mh_getline (s, n, iop)
 char   *s;
 int     n;
 FILE * iop;
