diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2024-04-22 10:57:37 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2024-04-22 10:57:37 +0000 |
commit | 31c348120a94047f5d5c8a31f5a6fdb68a8ac2a1 (patch) | |
tree | c95d76574f4ba63f42aa3097fbf2792e47af783d | |
parent | 4f98baff02959619f0e53c65510ae17fca96baff (diff) |
sndiod: Drop duplicate prototype of dev_new()
-rw-r--r-- | usr.bin/sndiod/dev.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/sndiod/dev.c b/usr.bin/sndiod/dev.c index 97c61c7fa15..c3d32509311 100644 --- a/usr.bin/sndiod/dev.c +++ b/usr.bin/sndiod/dev.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dev.c,v 1.110 2024/04/22 10:43:16 ratchov Exp $ */ +/* $OpenBSD: dev.c,v 1.111 2024/04/22 10:57:36 ratchov Exp $ */ /* * Copyright (c) 2008-2012 Alexandre Ratchov <alex@caoua.org> * @@ -41,8 +41,6 @@ void dev_sub_bcopy(struct dev *, struct slot *); void dev_onmove(struct dev *, int); void dev_master(struct dev *, unsigned int); void dev_cycle(struct dev *); -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_allocbufs(struct dev *); void dev_freebufs(struct dev *); |