From: Roland McGrath Date: Mon, 1 Oct 2012 20:07:58 +0000 (-0700) Subject: Define __have_atfcts global in stub openat implementation. X-Git-Tag: glibc-2.17~466 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=497a03d6f1b8baaba981e80041e96cf31b82c8fe;p=thirdparty%2Fglibc.git Define __have_atfcts global in stub openat implementation. --- diff --git a/ChangeLog b/ChangeLog index da457621378..b1ec572709f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2012-10-01 Roland McGrath + * io/openat.c [!__ASSUME_ATFCTS] (__have_atfcts): New global variable. + * sysdeps/unix/sysv/linux/init-first.c: Moved to ... * csu/init-first.c: ... here. * sysdeps/unix/sysv/linux/powerpc/init-first.c: Update #include. diff --git a/io/openat.c b/io/openat.c index 92a5769e96f..b496539361d 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 #include #include +#include + +/* 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