diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-13 21:38:57 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-13 21:38:57 +0000 |
commit | f32600208f4e9db972eb47f7d4959994b31199e6 (patch) | |
tree | 2a9b75b74b8cf126b816ee32a36727977b5c3de3 /libc/misc/dirent/seekdir.c | |
parent | 01015a4321d2af6b665a90a20ea349f02bde6f81 (diff) |
Convert all users of earlier hiddens
Diffstat (limited to 'libc/misc/dirent/seekdir.c')
-rw-r--r-- | libc/misc/dirent/seekdir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/dirent/seekdir.c b/libc/misc/dirent/seekdir.c index 507131097..6e841291a 100644 --- a/libc/misc/dirent/seekdir.c +++ b/libc/misc/dirent/seekdir.c @@ -10,7 +10,7 @@ void seekdir(DIR * dir, long int offset) return; } __pthread_mutex_lock(&(dir->dd_lock)); - dir->dd_nextoff = lseek(dir->dd_fd, offset, SEEK_SET); + dir->dd_nextoff = __lseek(dir->dd_fd, offset, SEEK_SET); dir->dd_size = dir->dd_nextloc = 0; __pthread_mutex_unlock(&(dir->dd_lock)); } |