Make local functions static.

pull/1708/head
George Baltz N3GB 2025-04-16 03:35:48 -04:00
rodzic 8150583541
commit 1f707ab31e
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -55,7 +55,7 @@ extern int csv_parm_load(RIG *rig, const char *infilename);
*/
void usage();
void version();
int set_conf(RIG *rig, char *conf_parms);
static int set_conf(RIG *rig, char *conf_parms);
int clear_chans(RIG *rig, const char *infilename);
@ -442,7 +442,7 @@ void usage()
}
int set_conf(RIG *rig, char *conf_parms)
static int set_conf(RIG *rig, char *conf_parms)
{
char *p, *n;

Wyświetl plik

@ -374,7 +374,7 @@ void usage()
}
int set_conf(RIG *rig, char *conf_parms)
static int set_conf(RIG *rig, char *conf_parms)
{
char *p, *n;