mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
23 lines
416 B
Plaintext
23 lines
416 B
Plaintext
$NetBSD: patch-ab,v 1.1 2009/08/24 08:06:41 wiz Exp $
|
||
|
||
--- util.c.orig 2002-05-13 16:27:29.000000000 +0000
|
||
+++ util.c
|
||
@@ -180,7 +180,7 @@ rename_uniq(const char *from, char **to)
|
||
|
||
|
||
char *
|
||
-getline(FILE *f)
|
||
+get_line(FILE *f)
|
||
{
|
||
static char *b;
|
||
static int bsize;
|
||
@@ -234,7 +234,7 @@ getline(FILE *f)
|
||
void
|
||
skip_rest(FILE *f)
|
||
{
|
||
- while (getline(f) != NULL)
|
||
+ while (get_line(f) != NULL)
|
||
;
|
||
}
|
||
|