diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-10-01 13:07:58 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-10-01 13:07:58 -0700 |
commit | 497a03d6f1b8baaba981e80041e96cf31b82c8fe (patch) | |
tree | 1fa9bee601ee7a3c9ec9e9ff26575a11461f62e5 /io | |
parent | 93c65d438497842a42fe4f6a8af272d20a143025 (diff) | |
download | glibc-497a03d6f1b8baaba981e80041e96cf31b82c8fe.tar.gz glibc-497a03d6f1b8baaba981e80041e96cf31b82c8fe.tar.xz glibc-497a03d6f1b8baaba981e80041e96cf31b82c8fe.zip |
Define __have_atfcts global in stub openat implementation.
Diffstat (limited to 'io')
-rw-r--r-- | io/openat.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/io/openat.c b/io/openat.c index 92a5769e96..b496539361 100644 --- a/io/openat.c +++ b/io/openat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc. +/* Copyright (C) 2005-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -21,6 +21,13 @@ #include <stddef.h> #include <stdio.h> #include <sys/stat.h> +#include <kernel-features.h> + +/* Some mostly-generic code (e.g. sysdeps/posix/getcwd.c) uses this variable + if __ASSUME_ATFCTS is not defined. */ +#ifndef __ASSUME_ATFCTS +int __have_atfcts; +#endif /* Open FILE with access OFLAG. Interpret relative paths relative to the directory associated with FD. If OFLAG includes O_CREAT, a |