kolibrios/contrib/sdk/sources/newlib/libc/posix/seekdir.c

15 lines
240 B
C
Raw Normal View History

/*
* Copyright (C) KolibriOS team 2024. All rights reserved.
* Distributed under terms of the GNU General Public License
*/
#include <dirent.h>
void
_DEFUN(seekdir, (dirp, loc),
DIR *dirp _AND
long loc)
{
dirp->pos = loc;
}