This commit is contained in:
srinivas%netscape.com 1999-07-16 00:30:32 +00:00
Родитель 2186498700
Коммит 5037452235
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -35,7 +35,8 @@
** Note: on some platforms va_list is defined as an array, ** Note: on some platforms va_list is defined as an array,
** and requires array notation. ** and requires array notation.
*/ */
#if (defined(LINUX) && defined(__powerpc__)) || defined(WIN16) || defined(QNX) #if (defined(LINUX) && defined(__powerpc__)) || defined(WIN16) || \
defined(QNX) || (defined(__NetBSD__) && defined(__powerpc__))
#define VARARGS_ASSIGN(foo, bar) foo[0] = bar[0] #define VARARGS_ASSIGN(foo, bar) foo[0] = bar[0]
#else #else
#define VARARGS_ASSIGN(foo, bar) (foo) = (bar) #define VARARGS_ASSIGN(foo, bar) (foo) = (bar)