diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-12 13:54:52 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-12 13:54:52 +0000 |
commit | 769d27bfd8d598bed294304a0b6d36f6a200ed07 (patch) | |
tree | 25c784d8964580517aa4c0cc2c3a45dc67f1ca0e /usr.bin/midiplay/midiplay.c | |
parent | bde1ca3cfc1caa4c3d1ce29de79212df84e68e72 (diff) |
simpler prototype repairs
Diffstat (limited to 'usr.bin/midiplay/midiplay.c')
-rw-r--r-- | usr.bin/midiplay/midiplay.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/midiplay/midiplay.c b/usr.bin/midiplay/midiplay.c index bcc26e6c8f7..fe5b77501ff 100644 --- a/usr.bin/midiplay/midiplay.c +++ b/usr.bin/midiplay/midiplay.c @@ -1,4 +1,4 @@ -/* $OpenBSD: midiplay.c,v 1.15 2012/01/26 04:17:04 lum Exp $ */ +/* $OpenBSD: midiplay.c,v 1.16 2013/11/12 13:54:51 deraadt Exp $ */ /* $NetBSD: midiplay.c,v 1.8 1998/11/25 22:17:07 augustss Exp $ */ /* @@ -85,6 +85,7 @@ void midireset(void); u_long getvar(struct track *); void playfile(FILE *, char *); void playdata(u_char *, u_int, char *); +void sigalrm(int); int main(int argc, char **argv); extern char *__progname; |