diff options
Diffstat (limited to 'libio/fseeko.c')
-rw-r--r-- | libio/fseeko.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libio/fseeko.c b/libio/fseeko.c index 7a70636..6d37aea 100644 --- a/libio/fseeko.c +++ b/libio/fseeko.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993,1995,1996,1997,1998,2003 Free Software Foundation, Inc. +/* Copyright (C) 1993-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -40,3 +40,7 @@ fseeko (fp, offset, whence) _IO_release_lock (fp); return result; } + +#ifdef __OFF_T_MATCHES_OFF64_T +weak_alias (fseeko, fseeko64) +#endif |