+2007-04-30 Eric Blake <ebb9@byu.net>
+
+ Prefer fseeko to fseek.
+ * modules/getpass (Depends-on): Add fseeko.
+ * lib/getpass.c (getpass): Use fseeko, not fseek.
+
2007-04-30 Sergey Poznyakoff <gray@gnu.org.ua>
* lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
-/* Copyright (C) 1992-2001, 2003, 2004, 2005, 2006 Free Software
+/* Copyright (C) 1992-2001, 2003, 2004, 2005, 2006, 2007 Free Software
Foundation, Inc.
This file is part of the GNU C Library.
== fileno (out). The POSIX restrictions are tricky and change
from POSIX version to POSIX version, so play it safe and invoke
fseek even if in != out. */
- fseek (out, 0, SEEK_CUR);
+ fseeko (out, 0, SEEK_CUR);
if (buf != NULL)
{