declare overlays_init()

This commit is contained in:
Pierangelo Masarati 2003-12-13 10:57:13 +00:00
parent 8a9d026097
commit 9c5fe98a79
2 changed files with 8 additions and 1 deletions

View file

@ -50,7 +50,9 @@ static struct {
{ NULL, NULL }
};
int overlay_init() {
int
overlay_init(void)
{
int i, rc = 0;
for ( i=0; funcs[i].name; i++ ) {

View file

@ -844,6 +844,11 @@ LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
LDAP_SLAPD_F (Attribute *) slap_operational_subschemaSubentry( Backend *be );
LDAP_SLAPD_F (Attribute *) slap_operational_hasSubordinate( int has );
/*
* overlays.c
*/
LDAP_SLAPD_F (int) overlay_init( void );
/*
* passwd.c
*/