From: drepper Date: Wed, 18 Aug 1999 00:33:34 +0000 (+0000) Subject: (telldir): Change return type to long int. X-Git-Tag: glibc_2-1-91~6481 X-Git-Url: http://git.csclub.uwaterloo.ca/?p=kopensolaris-gnu%2Fglibc.git;a=commitdiff_plain;h=bccfd4976f015f901c39bfc48b65dd8116ee8eaf;hp=410cf244f44d5632adaef72c98feb633ef73c899 (telldir): Change return type to long int. --- diff --git a/sysdeps/unix/telldir.c b/sysdeps/unix/telldir.c index f0ad95fd7c..b1c7952c05 100644 --- a/sysdeps/unix/telldir.c +++ b/sysdeps/unix/telldir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995, 1996, 1997, 1999 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 @@ -21,7 +21,7 @@ #include /* Return the current position of DIRP. */ -off_t +long int telldir (DIR *dirp) { return dirp->filepos;