From b809937395457fadb9fa3ab98ad8a4ff52e9fa7d Mon Sep 17 00:00:00 2001 From: Daniele Forsi IU5HKX Date: Mon, 4 Aug 2025 10:46:23 +0200 Subject: [PATCH] Rename in preparation of conflicting changes --- simulators/simatd578.c | 4 ++-- simulators/simeasycomm.c | 8 ++++---- simulators/simmicom.c | 4 ++-- simulators/simorion.c | 4 ++-- simulators/simpmr171.c | 4 ++-- simulators/simrotorez.c | 8 ++++---- simulators/simts590.c | 4 ++-- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/simulators/simatd578.c b/simulators/simatd578.c index 8f5a4dd5c..06de3e511 100644 --- a/simulators/simatd578.c +++ b/simulators/simatd578.c @@ -20,7 +20,7 @@ int curr_vfo = 0; int -getmyline(int fd, unsigned char *buf) +_getmyline(int fd, unsigned char *buf) { unsigned char c; int i = 0; @@ -62,7 +62,7 @@ again: while (1) { - int bytes = getmyline(fd, buf); + int bytes = _getmyline(fd, buf); if (bytes == 0) { diff --git a/simulators/simeasycomm.c b/simulators/simeasycomm.c index 8089277bb..a774e5fcc 100644 --- a/simulators/simeasycomm.c +++ b/simulators/simeasycomm.c @@ -14,7 +14,7 @@ static void *rotorez_thread(void *arg); int -getmyline(int fd, char *buf) +_getmyline(int fd, char *buf) { unsigned char c = 0; int i = 0; @@ -61,8 +61,8 @@ int main(int argc, char *argv[]) while (1) { int bytes; - if (!flag) bytes = getmyline(fd, buf); - else bytes = getmyline(fd2, buf); + if (!flag) bytes = _getmyline(fd, buf); + else bytes = _getmyline(fd2, buf); flag = !flag; if (bytes == 0) @@ -116,7 +116,7 @@ again: while (1) { int bytes; - bytes = getmyline(fd, buf); + bytes = _getmyline(fd, buf); if (bytes == 0) { diff --git a/simulators/simmicom.c b/simulators/simmicom.c index b567bdd4b..dfc80ea99 100644 --- a/simulators/simmicom.c +++ b/simulators/simmicom.c @@ -20,7 +20,7 @@ int width_sub = 700; int -getmyline(int fd, unsigned char *buf) +_getmyline(int fd, unsigned char *buf) { int i = 0; int n = 0; @@ -56,7 +56,7 @@ again: while (1) { - int bytes = getmyline(fd, buf); + int bytes = _getmyline(fd, buf); if (bytes == 0) { diff --git a/simulators/simorion.c b/simulators/simorion.c index 8d97a772f..36de57b65 100644 --- a/simulators/simorion.c +++ b/simulators/simorion.c @@ -15,7 +15,7 @@ int ptt = 0; int keyspd = 20; int -getmyline(int fd, char *buf) +_getmyline(int fd, char *buf) { unsigned char c; int i = 0; @@ -45,7 +45,7 @@ again: while (1) { - int bytes = getmyline(fd, buf); + int bytes = _getmyline(fd, buf); if (bytes == 0) { diff --git a/simulators/simpmr171.c b/simulators/simpmr171.c index ff9b4a905..14cd5b488 100644 --- a/simulators/simpmr171.c +++ b/simulators/simpmr171.c @@ -18,7 +18,7 @@ int width_sub = 700; int -getmyline(int fd, unsigned char *buf) +_getmyline(int fd, unsigned char *buf) { unsigned char c; int i = 0; @@ -61,7 +61,7 @@ again: while (1) { - int bytes = getmyline(fd, buf); + int bytes = _getmyline(fd, buf); if (bytes == 0) { diff --git a/simulators/simrotorez.c b/simulators/simrotorez.c index 345db445c..48b0042ba 100644 --- a/simulators/simrotorez.c +++ b/simulators/simrotorez.c @@ -14,7 +14,7 @@ static void *rotorez_thread(void *arg); int -getmyline(int fd, char *buf) +_getmyline(int fd, char *buf) { unsigned char c = 0; int i = 0; @@ -61,8 +61,8 @@ int main(int argc, char *argv[]) while (1) { int bytes; - if (!flag) bytes = getmyline(fd, buf); - else bytes = getmyline(fd2, buf); + if (!flag) bytes = _getmyline(fd, buf); + else bytes = _getmyline(fd2, buf); flag = !flag; if (bytes == 0) @@ -116,7 +116,7 @@ again: while (1) { int bytes; - bytes = getmyline(fd, buf); + bytes = _getmyline(fd, buf); if (bytes == 0) { diff --git a/simulators/simts590.c b/simulators/simts590.c index 43d39ed34..316eb0c27 100644 --- a/simulators/simts590.c +++ b/simulators/simts590.c @@ -28,7 +28,7 @@ int usb_af_input = 9; int mic_gain = 50; int -getmyline(int fd, char *buf) +_getmyline(int fd, char *buf) { char c; int i = 0; @@ -62,7 +62,7 @@ int main(int argc, char *argv[]) { buf[0] = 0; - if (getmyline(fd, buf) > 0) { printf("Cmd:%s\n", buf); } + if (_getmyline(fd, buf) > 0) { printf("Cmd:%s\n", buf); } // else { return 0; }