+2010-03-25 Bruno Haible <bruno@clisp.org>
+
+ Avoid collision between gnulib wrapper and libintl wrapper.
+ * lib/printf.c (printf): Don't define if a printf wrapper is already
+ defined in intl/printf.c.
+ Reported by Michel Boaventura <michel@michelboaventura.com>.
+
2010-03-25 Bruno Haible <bruno@clisp.org>
Use ANSI C.
/* Formatted output to a stream.
- Copyright (C) 2007, 2009, 2010 Free Software Foundation, Inc.
+ Copyright (C) 2007, 2010 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
#include <stdarg.h>
+#if !DEPENDS_ON_LIBINTL /* avoid collision with intl/printf.c */
+
/* Print formatted output to standard output.
Return string length of formatted string. On error, return a negative
value. */
return retval;
}
+
+#endif