75cc884573
Added missing dirent impl git-svn-id: svn://kolibrios.org@9955 a494cfbc-eb01-0410-851d-a64ba20cac60
15 lines
240 B
C
15 lines
240 B
C
/*
|
|
* 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;
|
|
}
|