aboutsummaryrefslogtreecommitdiffstats
path: root/nt
diff options
context:
space:
mode:
Diffstat (limited to 'nt')
-rw-r--r--nt/ChangeLog5
-rw-r--r--nt/inc/unistd.h3
2 files changed, 7 insertions, 1 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog
index e9ff443b947..dcda682cfc6 100644
--- a/nt/ChangeLog
+++ b/nt/ChangeLog
@@ -1,3 +1,8 @@
12013-03-05 Paul Eggert <eggert@cs.ucla.edu>
2
3 FILE's lock is now always .#FILE and may be a regular file (Bug#13807).
4 * inc/unistd.h (O_NOFOLLOW): New macro.
5
12013-03-04 Juanma Barranquero <lekktu@gmail.com> 62013-03-04 Juanma Barranquero <lekktu@gmail.com>
2 7
3 * config.nt: Sync with autogen/config.in. 8 * config.nt: Sync with autogen/config.in.
diff --git a/nt/inc/unistd.h b/nt/inc/unistd.h
index 3fd9289d83d..e07c46533f7 100644
--- a/nt/inc/unistd.h
+++ b/nt/inc/unistd.h
@@ -27,8 +27,9 @@ extern int faccessat (int, char const *, int, int);
27#define AT_EACCESS 4 27#define AT_EACCESS 4
28#define AT_SYMLINK_NOFOLLOW 4096 28#define AT_SYMLINK_NOFOLLOW 4096
29 29
30#define O_NOCTTY 0
31#define O_IGNORE_CTTY 0 30#define O_IGNORE_CTTY 0
31#define O_NOCTTY 0
32#define O_NOFOLLOW 0
32 33
33/* This is normally on stdlib.h, but we don't override that header. */ 34/* This is normally on stdlib.h, but we don't override that header. */
34extern int unsetenv (const char *); 35extern int unsetenv (const char *);