Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. /*
  2.  * Copyright (C) KolibriOS team 2024. All rights reserved.
  3.  * Distributed under terms of the GNU General Public License
  4. */
  5.  
  6. #include <dirent.h>
  7.  
  8. void
  9. _DEFUN(seekdir, (dirp, loc),
  10.     DIR *dirp _AND
  11.     long loc)
  12. {
  13.     dirp->pos = loc;
  14. }
  15.