Add missing prototypes.

This commit is contained in:
Ralf Corsepius
2008-08-19 13:47:03 +00:00
parent 55cf0bf2a5
commit bec7639374
@@ -4,12 +4,12 @@
* $Id$
*/
void __main ()
void __main (void)
{
static int initialized;
if (! initialized)
{
typedef void (*pfunc) ();
typedef void (*pfunc) (void);
extern pfunc __ctors[];
extern pfunc __ctors_end[];
pfunc *p;