diff options
-rw-r--r-- | lib/yesno.c | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/lib/yesno.c b/lib/yesno.c index f69954d1d..44c437caf 100644 --- a/lib/yesno.c +++ b/lib/yesno.c @@ -29,7 +29,8 @@ and return nonzero if that line begins with y or Y, otherwise return 0. */ -#ifdef HAVE_RPMATCH +int rpmatch (); + int yesno () { @@ -49,19 +50,3 @@ yesno () return rpmatch (buf) == 1; } -#else -int -yesno () -{ - int c; - int rv; - - fflush (stderr); - c = getchar (); - rv = (c == 'y') || (c == 'Y'); - while (c != EOF && c != '\n') - c = getchar (); - - return rv; -} -#endif |