Commit e6357396 authored by Sergey Lyubka's avatar Sergey Lyubka

made readdir() static

parent bd3b812b
...@@ -1129,7 +1129,7 @@ static int closedir(DIR *dir) { ...@@ -1129,7 +1129,7 @@ static int closedir(DIR *dir) {
return result; return result;
} }
struct dirent * readdir(DIR *dir) { static struct dirent *readdir(DIR *dir) {
struct dirent *result = 0; struct dirent *result = 0;
if (dir) { if (dir) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment