From b5d737aa00c181bb4d12ef22bb2b041cf39856ef Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 11 Nov 2014 11:54:32 -0600 Subject: [PATCH] Update ChangeLog --- ChangeLog | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index cc7306b5de..9f9dd0d8fa 100755 --- a/ChangeLog +++ b/ChangeLog @@ -8924,4 +8924,10 @@ (2014-11-10). * sched/wdog/wd_create.c: Fix an important bug in the watchdog creation logic (2014-11-10). - + * include/unistd.h, libc/unistd/lib_access.c and Make.defs: From Lorenz + Meier: The implementation of access() as vararg macro has the issue that + any function call with the same name (even in a C++ class) will match + with it and result in a compile error. I have replaced it with a small + function, and tried to have decent documentation as well. This resolves + the compile issue, and shouldn’t have negative side effects for users + of the function (2014-11-11).