summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2024-05-21 06:07:07 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2024-05-21 06:07:07 +0000
commit57ee38715aad2dd79559e35519903fdcd0b3c8f3 (patch)
tree1a6d546efcb0100dccb78e883194a6c361317c6d /lib
parent5b4f2af081187ce5fc94a5036744adce595710da (diff)
remove prototypes with no matching function; ok ratchov@
Diffstat (limited to 'lib')
-rw-r--r--lib/libsndio/mio_priv.h3
-rw-r--r--lib/libsndio/sio_priv.h3
-rw-r--r--lib/libsndio/sioctl_priv.h4
3 files changed, 3 insertions, 7 deletions
diff --git a/lib/libsndio/mio_priv.h b/lib/libsndio/mio_priv.h
index f39833b19aa..1ec928f1427 100644
--- a/lib/libsndio/mio_priv.h
+++ b/lib/libsndio/mio_priv.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: mio_priv.h,v 1.13 2022/12/27 17:10:07 jmc Exp $ */
+/* $OpenBSD: mio_priv.h,v 1.14 2024/05/21 06:07:06 jsg Exp $ */
/*
* Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org>
*
@@ -46,6 +46,5 @@ struct mio_ops {
struct mio_hdl *_mio_rmidi_open(const char *, unsigned, int);
struct mio_hdl *_mio_aucat_open(const char *, unsigned, int);
void _mio_create(struct mio_hdl *, struct mio_ops *, unsigned, int);
-void _mio_destroy(struct mio_hdl *);
#endif /* !defined(MIO_PRIV_H) */
diff --git a/lib/libsndio/sio_priv.h b/lib/libsndio/sio_priv.h
index ee933f6eb31..168be19ac34 100644
--- a/lib/libsndio/sio_priv.h
+++ b/lib/libsndio/sio_priv.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sio_priv.h,v 1.11 2022/12/27 17:10:07 jmc Exp $ */
+/* $OpenBSD: sio_priv.h,v 1.12 2024/05/21 06:07:06 jsg Exp $ */
/*
* Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org>
*
@@ -69,7 +69,6 @@ struct sio_ops {
struct sio_hdl *_sio_aucat_open(const char *, unsigned, int);
struct sio_hdl *_sio_sun_open(const char *, unsigned, int);
void _sio_create(struct sio_hdl *, struct sio_ops *, unsigned, int);
-void _sio_destroy(struct sio_hdl *);
void _sio_onmove_cb(struct sio_hdl *, int);
void _sio_onvol_cb(struct sio_hdl *, unsigned);
#ifdef DEBUG
diff --git a/lib/libsndio/sioctl_priv.h b/lib/libsndio/sioctl_priv.h
index 5a58ba8901a..5aab1effd06 100644
--- a/lib/libsndio/sioctl_priv.h
+++ b/lib/libsndio/sioctl_priv.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sioctl_priv.h,v 1.2 2022/12/27 17:10:07 jmc Exp $ */
+/* $OpenBSD: sioctl_priv.h,v 1.3 2024/05/21 06:07:06 jsg Exp $ */
/*
* Copyright (c) 2014-2020 Alexandre Ratchov <alex@caoua.org>
*
@@ -49,8 +49,6 @@ struct sioctl_ops {
};
struct sioctl_hdl *_sioctl_aucat_open(const char *, unsigned int, int);
-struct sioctl_hdl *_sioctl_obsd_open(const char *, unsigned int, int);
-struct sioctl_hdl *_sioctl_fake_open(const char *, unsigned int, int);
struct sioctl_hdl *_sioctl_sun_open(const char *, unsigned int, int);
void _sioctl_create(struct sioctl_hdl *,
struct sioctl_ops *, unsigned int, int);