about summary refs log tree commit diff
path: root/dirent/dirent.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-08-18 00:34:47 +0000
committerUlrich Drepper <drepper@redhat.com>1999-08-18 00:34:47 +0000
commit56c55d5d4a8ef51ef424cbfcb9eca2b2fa95e419 (patch)
treef7a806a0fde858c7b387865ceb3eabad61e43ffd /dirent/dirent.h
parent5d08d21845b284c3ad10aafec82cf85938229613 (diff)
downloadglibc-56c55d5d4a8ef51ef424cbfcb9eca2b2fa95e419.tar.gz
glibc-56c55d5d4a8ef51ef424cbfcb9eca2b2fa95e419.tar.xz
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 'dirent/dirent.h')
-rw-r--r--dirent/dirent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dirent/dirent.h b/dirent/dirent.h
index 375d66ef30..472b4804af 100644
--- a/dirent/dirent.h
+++ b/dirent/dirent.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991,92,93,94,95,96,97,98 Free Software Foundation, Inc.
+/* Copyright (C) 1991,92,93,94,95,96,97,98,99 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
@@ -174,7 +174,7 @@ extern void rewinddir __P ((DIR *__dirp));
 extern void seekdir __P ((DIR *__dirp, __off_t __pos));
 
 /* Return the current position of DIRP.  */
-extern __off_t telldir __P ((DIR *__dirp));
+extern long int telldir __P ((DIR *__dirp));
 #endif
 
 #if defined __USE_BSD || defined __USE_MISC