Skip to content
Snippets Groups Projects
Commit 65f45ffd authored by Leah Rowe's avatar Leah Rowe
Browse files

util/spkmodem_recv: Define argc/argv in main


Signed-off-by: default avatarLeah Rowe <leah@libreboot.org>
parent 3444ce6a
No related merge requests found
...@@ -51,12 +51,15 @@ read_sample (void) ...@@ -51,12 +51,15 @@ read_sample (void)
} }
int int
main () main (int argc, char *argv[])
{ {
int bitn = 7; int bitn = 7;
char c = 0; char c = 0;
int i; int i;
int llp = 0; int llp = 0;
(void)argc; (void)argv;
while (!feof (stdin)) { while (!feof (stdin)) {
if (lp > 3 * SAMPLES_PER_TRAME) { if (lp > 3 * SAMPLES_PER_TRAME) {
bitn = 7; bitn = 7;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment