Make *_free() public

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer
2012-06-27 09:19:41 +02:00
parent 47d5fe2d45
commit b230e2949e
5 changed files with 10 additions and 5 deletions

View File

@@ -157,7 +157,7 @@ void recur_apoint_llist_init(void)
LLIST_TS_INIT(&recur_alist_p);
}
static void recur_apoint_free(struct recur_apoint *rapt)
void recur_apoint_free(struct recur_apoint *rapt)
{
mem_free(rapt->mesg);
if (rapt->note)
@@ -168,7 +168,7 @@ static void recur_apoint_free(struct recur_apoint *rapt)
mem_free(rapt);
}
static void recur_event_free(struct recur_event *rev)
void recur_event_free(struct recur_event *rev)
{
mem_free(rev->mesg);
if (rev->note)