QNX-specific build bustage fix. Also excludes NTO just in case both are defined under Neutrino.

This commit is contained in:
briano%netscape.com 1999-12-08 03:58:40 +00:00
Родитель 1eb3d4e793
Коммит c96cde4b0f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -50,7 +50,7 @@
** Note: on some platforms va_list is defined as an array,
** and requires array notation.
*/
#if (defined(linux) && defined(__powerpc__)) || defined(WIN16)
#if (defined(linux) && defined(__powerpc__)) || (defined(__QNX__) && !defined(NTO)) || defined(WIN16)
#define VARARGS_ASSIGN(foo, bar) foo[0] = bar[0]
#else
#define VARARGS_ASSIGN(foo, bar) (foo) = (bar)