diff options
| author | christos <christos@NetBSD.org> | 2006-05-17 20:36:50 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-05-17 20:36:50 +0000 |
| commit | cfd3aebca47c5c3ef947e99fa964389716bb250f (patch) | |
| tree | 97f9c83b91b118ac7f22dbaa5e51945f1e994a82 /lib/libc/include | |
| parent | 54595e994676fcb788ae71a4165ca5ca4c65f595 (diff) | |
PR/24324: Arne H Juul: Re-implement seekdir/telldir using a pointer of
locations per directory instead of a global hash table to avoid memory
leak issues, and incorrect results.
Diffstat (limited to 'lib/libc/include')
| -rw-r--r-- | lib/libc/include/extern.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/libc/include/extern.h b/lib/libc/include/extern.h index 9a8e3550190..e5b52614622 100644 --- a/lib/libc/include/extern.h +++ b/lib/libc/include/extern.h @@ -1,4 +1,4 @@ -/* $NetBSD: extern.h,v 1.12 2006/02/24 19:33:09 drochner Exp $ */ +/* $NetBSD: extern.h,v 1.13 2006/05/17 20:36:50 christos Exp $ */ /* * Copyright (c) 1997 Christos Zoulas. All rights reserved. @@ -46,14 +46,6 @@ struct sigaction; int __sigaction_sigtramp __P((int, const struct sigaction *, struct sigaction *, const void *, int)); -struct _dirdesc; -void _seekdir_unlocked(struct _dirdesc *, long); -long _telldir_unlocked(const struct _dirdesc *); -#ifndef __LIBC12_SOURCE__ -struct dirent; -struct dirent *_readdir_unlocked(struct _dirdesc *) __RENAME(___readdir_unlocked30); -#endif - #ifdef WIDE_DOUBLE char *__hdtoa(double, const char *, int, int *, int *, char **); char *__hldtoa(long double, const char *, int, int *, int *, char **); |
