Add prototype for init.

This commit is contained in:
Andreas Jaeger 2001-01-21 17:15:50 +00:00
parent d17c01f9fe
commit 59b139cb9c
1 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@
extern int bar (void);
extern int baz (void);
extern int foo (void);
extern void __attribute__ ((__constructor__)) init (void);
void *h;
@ -20,6 +21,7 @@ baz (void)
return -21;
}
void
__attribute__ ((__constructor__))
init (void)