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
parent 9bef23e66b
commit d07322f19a
2 changed files with 6 additions and 0 deletions

View File

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

View File

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