From: Jim Meyering Date: Sat, 28 Oct 2000 07:47:04 +0000 (+0000) Subject: (setusershell) [HAVE_FSEEKO]: Use fseek0. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=985743b6a147e8c83d1bdd9e6dd87e465a25869b;p=pspp (setusershell) [HAVE_FSEEKO]: Use fseek0. Patch by Ulrich Drepper. --- diff --git a/lib/getusershell.c b/lib/getusershell.c index 35f72dbcbd..75163ac26f 100644 --- a/lib/getusershell.c +++ b/lib/getusershell.c @@ -103,7 +103,13 @@ setusershell () if (shellstream == NULL) shellstream = fopen (SHELLS_FILE, "r"); else - fseek (shellstream, 0L, 0); + { +#ifdef HAVE_FSEEKO + fseeko (shellstream, 0, 0); +#else + fseek (shellstream, 0L, 0); +#endif + } } /* Close the shells file. */