changeset 15945:f914ec364e88

ffs, bcopy, memset: Support symbol renaming via config.h. * lib/ffs.c: Include <config.h>. * lib/bcopy.c: Likewise. * lib/memset.c: Likewise.
author Bruno Haible <bruno@clisp.org>
date Thu, 13 Oct 2011 23:35:20 +0200
parents 4b3d35486c68
children d0eb709725f5
files ChangeLog lib/bcopy.c lib/ffs.c lib/memset.c
diffstat 4 files changed, 14 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2011-10-13  Bruno Haible  <bruno@clisp.org>
+
+	ffs, bcopy, memset: Support symbol renaming via config.h.
+	* lib/ffs.c: Include <config.h>.
+	* lib/bcopy.c: Likewise.
+	* lib/memset.c: Likewise.
+
 2011-10-10  Bruno Haible  <bruno@clisp.org>
 
 	atanl: Simplify for platforms where 'long double' == 'double'.
--- a/lib/bcopy.c
+++ b/lib/bcopy.c
@@ -3,6 +3,8 @@
    In the public domain.
    By David MacKenzie <djm@gnu.ai.mit.edu>.  */
 
+#include <config.h>
+
 #include <stddef.h>
 
 void
--- a/lib/ffs.c
+++ b/lib/ffs.c
@@ -16,6 +16,9 @@
 
 /* Written by Eric Blake.  */
 
+#include <config.h>
+
+/* Specification.  */
 #include <strings.h>
 
 #include <limits.h>
--- a/lib/memset.c
+++ b/lib/memset.c
@@ -15,6 +15,8 @@
    along with this program; if not, write to the Free Software Foundation,
    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
+#include <config.h>
+
 #include <stddef.h>
 
 void *