changeset 7472:7a37f7479e2a

Make it possible to #define gcd to an alias.
author Bruno Haible <bruno@clisp.org>
date Wed, 11 Oct 2006 12:40:44 +0000
parents 49b97d5983be
children 44fe37f21d92
files ChangeLog lib/gcd.c
diffstat 2 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-10-10  Bruno Haible  <bruno@clisp.org>
+
+	Make it possible to #define gcd to an alias.
+	* lib/gcd.c: Include config.h.
+
 2006-10-10  Bruno Haible  <bruno@clisp.org>
 
 	Make it possible to #define c_isascii to an alias.
--- a/lib/gcd.c
+++ b/lib/gcd.c
@@ -16,6 +16,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>
+
 /* This file can also be used to define gcd functions for other unsigned
    types, such as 'unsigned long long' or 'uintmax_t'.  */
 #ifndef WORD_T