summary refs log tree commit diff
path: root/sysdeps/generic
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 /sysdeps/generic
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 'sysdeps/generic')
-rw-r--r--sysdeps/generic/telldir.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/generic/telldir.c b/sysdeps/generic/telldir.c
index 3400829cb7..3a00bd836b 100644
--- a/sysdeps/generic/telldir.c
+++ b/sysdeps/generic/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
@@ -22,18 +22,18 @@
 #include <dirent.h>
 
 /* Return the current position of DIRP.  */
-off_t
+long int
 telldir (dirp)
      DIR *dirp;
 {
   if (dirp == NULL)
     {
       __set_errno (EINVAL);
-      return -1;
+      return -1l;
     }
 
   __set_errno (ENOSYS);
-  return (off_t) -1;
+  return -1l;
 }