diff options
author | Leah Rowe <leah@libreboot.org> | 2023-05-16 11:53:51 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-05-16 23:11:35 +0100 |
commit | 27866e65fbc2f9eb2564f774a5139aeec7fcba89 (patch) | |
tree | ed195cdc84e3c6dfbfe797b62db35420bea41096 | |
parent | 8b851258e240c1dfb7f738f82cbd139dc2612700 (diff) |
util/spkmodem_recv: Re-order prototypes
Put them in the same order as declared.
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r-- | util/spkmodem_recv/spkmodem-recv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/spkmodem_recv/spkmodem-recv.c b/util/spkmodem_recv/spkmodem-recv.c index 1ba402ca..b7805954 100644 --- a/util/spkmodem_recv/spkmodem-recv.c +++ b/util/spkmodem_recv/spkmodem-recv.c @@ -28,8 +28,8 @@ int pos, f1, f2; int amplitude = 0; int lp = 0; -void fetch_sample(void); void handle_audio(void); +void fetch_sample(void); int main(int argc, char *argv[]) |