aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/ntlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src/ntlib.c')
-rw-r--r--lib-src/ntlib.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib-src/ntlib.c b/lib-src/ntlib.c
index d3b001c157c..7b41941ab14 100644
--- a/lib-src/ntlib.c
+++ b/lib-src/ntlib.c
@@ -374,3 +374,9 @@ stat (const char * path, struct stat * buf)
374 return 0; 374 return 0;
375} 375}
376 376
377int
378lstat (const char * path, struct stat * buf)
379{
380 return stat (path, buf);
381}
382