aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog4
-rw-r--r--lib-src/ntlib.c6
2 files changed, 10 insertions, 0 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 955f8cd0330..c98d377f199 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,7 @@
12012-08-03 Eli Zaretskii <eliz@gnu.org>
2
3 * ntlib.c (lstat): New function, calls 'stat'.
4
12012-08-02 Paul Eggert <eggert@cs.ucla.edu> 52012-08-02 Paul Eggert <eggert@cs.ucla.edu>
2 6
3 Use C99-style 'extern inline' if available. 7 Use C99-style 'extern inline' if available.
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