Consistently use _exit prefix for functions.

This commit is contained in:
Uwe Hermann 2011-01-30 19:22:13 +01:00
parent 5a2326a71b
commit 01d9dc35ad
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ int sr_init(void)
}
/* TODO: Should return int to be able to report back error codes. */
void sr_cleanup(void)
void sr_exit(void)
{
device_close_all();
}

View File

@ -23,7 +23,7 @@
/*--- backend.c -------------------------------------------------------------*/
int sr_init(void);
void sr_cleanup(void);
void sr_exit(void);
/*--- datastore.c -----------------------------------------------------------*/