diff options
author | Bruno Haible <bruno@clisp.org> | 2007-03-17 01:44:00 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:14:43 +0200 |
commit | 21a1ce11caafae6ff3ba5e427301ef3c9dc9aa94 (patch) | |
tree | 03159be9c803a0a7c534b6945c94b1b169d9b1f0 /gettext-runtime/intl/libgnuintl.h.in | |
parent | 43abd40380a9e509447d7b545b1ef8a60600ecab (diff) | |
download | external_gettext-21a1ce11caafae6ff3ba5e427301ef3c9dc9aa94.zip external_gettext-21a1ce11caafae6ff3ba5e427301ef3c9dc9aa94.tar.gz external_gettext-21a1ce11caafae6ff3ba5e427301ef3c9dc9aa94.tar.bz2 |
printf on BeOS, like NetBSD abd Woe32, lacks argument reordering support.
Diffstat (limited to 'gettext-runtime/intl/libgnuintl.h.in')
-rw-r--r-- | gettext-runtime/intl/libgnuintl.h.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gettext-runtime/intl/libgnuintl.h.in b/gettext-runtime/intl/libgnuintl.h.in index 5e1ccd6..22ccb51 100644 --- a/gettext-runtime/intl/libgnuintl.h.in +++ b/gettext-runtime/intl/libgnuintl.h.in @@ -1,5 +1,5 @@ /* Message catalogs for internationalization. - Copyright (C) 1995-1997, 2000-2006 Free Software Foundation, Inc. + Copyright (C) 1995-1997, 2000-2007 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published @@ -330,7 +330,7 @@ extern int fprintf (FILE *, const char *, ...); extern int vfprintf (FILE *, const char *, va_list); #undef printf -#if defined __NetBSD__ || defined __CYGWIN__ || defined __MINGW32__ +#if defined __NetBSD__ || define __BEOS__ || defined __CYGWIN__ || defined __MINGW32__ /* Don't break __attribute__((format(printf,M,N))). This redefinition is only possible because the libc in NetBSD, Cygwin, mingw does not have a function __printf__. */ |