From 6a68d29389961476d3011dbeda9d5fddb52d174a Mon Sep 17 00:00:00 2001 From: Alexandre Ratchov Date: Thu, 29 Aug 2019 09:18:24 +0200 Subject: [PATCH] Add missing prototypes. --- sndiod/dev.c | 1 + sndiod/midi.c | 1 + 2 files changed, 2 insertions(+) diff --git a/sndiod/dev.c b/sndiod/dev.c index 31547e0..fe11712 100644 --- a/sndiod/dev.c +++ b/sndiod/dev.c @@ -59,6 +59,7 @@ struct dev *dev_new(char *, struct aparams *, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int); void dev_adjpar(struct dev *, int, int, int); int dev_open(struct dev *); +void dev_exitall(struct dev *); void dev_close(struct dev *); int dev_ref(struct dev *); void dev_unref(struct dev *); diff --git a/sndiod/midi.c b/sndiod/midi.c index d685b29..971794e 100644 --- a/sndiod/midi.c +++ b/sndiod/midi.c @@ -33,6 +33,7 @@ void port_imsg(void *, unsigned char *, int); void port_omsg(void *, unsigned char *, int); void port_fill(void *, int); void port_exit(void *); +void port_exitall(struct port *); struct midiops port_midiops = { port_imsg,