Make dummy int public (with _Py_ prefix), to keep gcc -Wall happy.

This commit is contained in:
Guido van Rossum 1996-12-09 18:48:32 +00:00
parent 37273177be
commit cd165cc092

View file

@ -92,4 +92,5 @@ initsgi()
initmodule("sgi", sgi_methods);
}
static int dummy; /* $%#@!& dl wants at least a byte of bss */
int _Py_sgi_dummy; /* $%#@!& dl wants at least a byte of bss */
/* And gcc -Wall doesn't like unused static variables :-( */