dtcm: fix implicit-function-declaration warnings

This commit is contained in:
Jon Trulson
2021-11-16 14:46:48 -07:00
parent f6c0a00a7a
commit 0ee97b3645
12 changed files with 55 additions and 5 deletions

View File

@@ -67,7 +67,7 @@ static const char CONTINUATION = '\\';
/*
** free_resources will step the list of resources and free the allocated space
*/
extern void
void
free_resources(Resource *r) {
if (r) {
free_resources(r->next);

View File

@@ -77,4 +77,6 @@ extern boolean_t set_resource(Resource**, char*, char*,
char*, char*);
extern boolean_t set_resource_by_val(Resource**, char*, char*);
extern void free_resources(Resource *r);
#endif