summaryrefslogtreecommitdiff
path: root/sysdeps/mach/hurd/seekdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/mach/hurd/seekdir.c')
-rw-r--r--sysdeps/mach/hurd/seekdir.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sysdeps/mach/hurd/seekdir.c b/sysdeps/mach/hurd/seekdir.c
index 1e527d1125..a7b9222452 100644
--- a/sysdeps/mach/hurd/seekdir.c
+++ b/sysdeps/mach/hurd/seekdir.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993-2016 Free Software Foundation, Inc.
+/* Copyright (C) 1993-2018 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,9 +22,8 @@
#include "dirstream.h"
/* Seek to position POS in DIRP. */
-/* XXX should be __seekdir ? */
void
-seekdir (DIR *dirp, long int pos)
+__seekdir (DIR *dirp, long int pos)
{
__libc_lock_lock (dirp->__lock);
/* Change our entry index pointer to POS and discard any data already
@@ -35,3 +34,5 @@ seekdir (DIR *dirp, long int pos)
dirp->__size = 0;
__libc_lock_unlock (dirp->__lock);
}
+
+weak_alias (__seekdir, seekdir)