Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/posix/telldir.c')
-rw-r--r--newlib/libc/posix/telldir.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/newlib/libc/posix/telldir.c b/newlib/libc/posix/telldir.c
index 9c945fcf7..af86d8d4f 100644
--- a/newlib/libc/posix/telldir.c
+++ b/newlib/libc/posix/telldir.c
@@ -81,8 +81,7 @@ __LOCK_INIT(static, __dd_hash_mutex);
#if !defined(_ELIX_LEVEL) || (_ELIX_LEVEL >= 2)
long
-_DEFUN(telldir, (dirp),
- DIR *dirp)
+telldir (DIR *dirp)
{
register int index;
register struct ddloc *lp;
@@ -119,8 +118,7 @@ _DEFUN(telldir, (dirp),
* Only values returned by "telldir" should be passed to seekdir.
*/
void
-_DEFUN(_seekdir, (dirp, loc),
- register DIR *dirp,
+_seekdir (register DIR *dirp,
long loc)
{
register struct ddloc *lp;
@@ -173,8 +171,7 @@ found:
/* clean out any hash entries from a closed directory */
void
-_DEFUN(_cleanupdir, (dirp),
- register DIR *dirp)
+_cleanupdir (register DIR *dirp)
{
int i;