*** empty log message ***

This commit is contained in:
Jorrit Herder 2005-08-25 12:33:09 +00:00
parent 207f4731dc
commit 68da9cc0fe
2 changed files with 2 additions and 3 deletions

View file

@ -1,7 +1,7 @@
/* Function prototypes. */
/* sm.c */
_PROTOTYPE( void main, (void));
_PROTOTYPE( int main, (void));
/* manager.c */
_PROTOTYPE( int do_exit, (message *m));

View file

@ -25,7 +25,7 @@ FORWARD _PROTOTYPE(void reply, (int whom, int result) );
/*===========================================================================*
* main *
*===========================================================================*/
PUBLIC void main(void)
PUBLIC int main(void)
{
/* This is the main routine of this service. The main loop consists of
* three major activities: getting new work, processing the work, and
@ -90,7 +90,6 @@ PUBLIC void main(void)
PRIVATE void init_server(void)
{
/* Initialize the reincarnation server. */
int i, s;
struct sigaction sa;
/* Install signal handlers. Ask PM to transform signal into message. */