From: jsg Date: Tue, 21 May 2024 06:07:06 +0000 (+0000) Subject: remove prototypes with no matching function; ok ratchov@ X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=d20001a803bf8b9a154852114830dee9c70d1206;p=openbsd remove prototypes with no matching function; ok ratchov@ --- 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 * @@ -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 * @@ -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 * @@ -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);