mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-11 21:15:30 -04:00

Move to folder with tcc. Part 1 git-svn-id: svn://kolibrios.org@8793 a494cfbc-eb01-0410-851d-a64ba20cac60
9 lines
158 B
C
9 lines
158 B
C
/* Copyright (C) 2021 Logaev Maxim (turbocat2001), GPLv2 */
|
|
|
|
#include <sys/dirent.h>
|
|
|
|
void rewinddir(DIR *dir){
|
|
if(dir!=NULL){
|
|
dir->pos=0;
|
|
}
|
|
} |