fix the "ANSI C forbids an empty source file" warning.

of course this introduce the "defined but not used" warning.
I'll fix that when later.
This commit is contained in:
sspitzer%netscape.com 1999-06-26 04:36:48 +00:00
Родитель 4ca17620eb
Коммит c894751ee0
2 изменённых файлов: 6 добавлений и 0 удалений

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

@ -145,3 +145,6 @@ done:
#endif
}
#endif /* no __sgi */
/* Some compilers don't like an empty source file. */
static int dummy = 0;

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

@ -68,3 +68,6 @@ vsnprintf(str, n, fmt, ap)
}
#endif /* HAVE_SNPRINTF */
/* Some compilers don't like an empty source file. */
static int dummy;