diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2013-11-18 17:37:46 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2013-11-18 17:37:46 +0000 |
commit | 2af9e0bad6b3f9144caf8713aa3ec8df97d3dcd1 (patch) | |
tree | 0e5a8b881334347a701069968cee73fa39699b49 /usr.bin/aucat/abuf.c | |
parent | f22b9aa4bcdd430d10b8b094f5e4dbe3199f7992 (diff) |
add missing prototypes
Diffstat (limited to 'usr.bin/aucat/abuf.c')
-rw-r--r-- | usr.bin/aucat/abuf.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.bin/aucat/abuf.c b/usr.bin/aucat/abuf.c index 181b40a9c93..63f7f4b261e 100644 --- a/usr.bin/aucat/abuf.c +++ b/usr.bin/aucat/abuf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: abuf.c,v 1.24 2012/04/11 06:05:43 ratchov Exp $ */ +/* $OpenBSD: abuf.c,v 1.25 2013/11/18 17:37:45 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org> * @@ -45,6 +45,12 @@ #include "dbg.h" #endif +void abuf_dump(struct abuf *); +int abuf_flush_do(struct abuf *); +int abuf_fill_do(struct abuf *); +void abuf_eof_do(struct abuf *); +void abuf_hup_do(struct abuf *); + #ifdef DEBUG void abuf_dbg(struct abuf *buf) |