Rename getline() to not conflict with the standard POSIX interface of the same name.

This commit is contained in:
Pascal Stumpf
2012-08-09 21:35:12 +02:00
committed by Jon Trulson
parent d1848610a7
commit 18dd384068
3 changed files with 4 additions and 4 deletions

View File

@@ -499,7 +499,7 @@ match(str, list)
* Get the next line. We only return lines beginning with '#' since that
* is all this program is ever interested in.
*/
char *getline(filep)
char *our_getline(filep)
register struct filepointer *filep;
{
register char *p, /* walking pointer */