Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9954 → Rev 9955

/contrib/sdk/sources/newlib/libc/posix/seekdir.c
0,0 → 1,14
/*
* 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;
}