Consistently use _exit prefix for functions.
This commit is contained in:
parent
5a2326a71b
commit
01d9dc35ad
|
@ -26,7 +26,7 @@ int sr_init(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TODO: Should return int to be able to report back error codes. */
|
/* TODO: Should return int to be able to report back error codes. */
|
||||||
void sr_cleanup(void)
|
void sr_exit(void)
|
||||||
{
|
{
|
||||||
device_close_all();
|
device_close_all();
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
/*--- backend.c -------------------------------------------------------------*/
|
/*--- backend.c -------------------------------------------------------------*/
|
||||||
|
|
||||||
int sr_init(void);
|
int sr_init(void);
|
||||||
void sr_cleanup(void);
|
void sr_exit(void);
|
||||||
|
|
||||||
/*--- datastore.c -----------------------------------------------------------*/
|
/*--- datastore.c -----------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue