diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-08-18 00:34:47 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-08-18 00:34:47 +0000 |
commit | 56c55d5d4a8ef51ef424cbfcb9eca2b2fa95e419 (patch) | |
tree | f7a806a0fde858c7b387865ceb3eabad61e43ffd /sysdeps/mach | |
parent | 5d08d21845b284c3ad10aafec82cf85938229613 (diff) | |
download | glibc-56c55d5d4a8ef51ef424cbfcb9eca2b2fa95e419.tar glibc-56c55d5d4a8ef51ef424cbfcb9eca2b2fa95e419.tar.gz glibc-56c55d5d4a8ef51ef424cbfcb9eca2b2fa95e419.tar.bz2 glibc-56c55d5d4a8ef51ef424cbfcb9eca2b2fa95e419.zip |
Update.
* dirent/dirent.h (telldir): Change return type to long int.
* sysdeps/generic/telldir.c: Likewise.
* sysdeps/mach/hurd/telldir.c: Likewise.
* sysdeps/unix/telldir.c: Likewise.
* sysdeps/unix/bsd/telldir.c: Likewise. Fix locking problem.
Diffstat (limited to 'sysdeps/mach')
-rw-r--r-- | sysdeps/mach/hurd/telldir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/telldir.c b/sysdeps/mach/hurd/telldir.c index 0063ddf688..d2ffe03650 100644 --- a/sysdeps/mach/hurd/telldir.c +++ b/sysdeps/mach/hurd/telldir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1994, 1995, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1993, 1994, 1995, 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 @@ -25,7 +25,7 @@ /* Return the current position of DIRP. */ /* XXX should be __telldir ? */ -off_t +long int telldir (dirp) DIR *dirp; { |