DtSvc/DtUtil1: fix implicit function declarations

This commit is contained in:
Jon Trulson
2019-10-28 13:22:09 -06:00
parent f2caa218b2
commit 951ae0d327
16 changed files with 68 additions and 10 deletions

View File

@@ -219,7 +219,7 @@ bool(int i)
#endif
check_content(char *val1, char *val2)
static int check_content(char *val1, char *val2)
{
char *v1 = strdup(val1);
char *v2 = strdup(val2);
@@ -462,7 +462,7 @@ cde_dc_field_compare(DtDtsDbField ** a, DtDtsDbField ** b)
cde_ft_field_value((*b)->fieldName));
}
cde_da_compare(DtDtsDbRecord ** a, DtDtsDbRecord ** b)
int cde_da_compare(DtDtsDbRecord ** a, DtDtsDbRecord ** b)
{
int results = ((*a)->recordName) - ((*b)->recordName);