diff options
Diffstat (limited to 'test/regex/testregex.c')
-rw-r--r-- | test/regex/testregex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/regex/testregex.c b/test/regex/testregex.c index 7b86ab79e..3d953f5d3 100644 --- a/test/regex/testregex.c +++ b/test/regex/testregex.c @@ -985,7 +985,7 @@ gotcha(int sig) } static char* -getline(FILE* fp) +my_getline(FILE* fp) { static char buf[32 * 1024]; @@ -1343,7 +1343,7 @@ main(int argc, char** argv) signal(SIGBUS, gotcha); signal(SIGSEGV, gotcha); } - while (p = getline(fp)) + while (p = my_getline(fp)) { /* parse: */ |