--- sio_hole.c 2002/11/27 15:50:29 1.6
+++ sio_hole.c 2002/11/29 13:00:18 1.7
@@ -76,7 +76,7 @@
}
static
-sio_rc_t hole_input(sio_t *sio, al_t *al, void *u)
+sio_rc_t hole_input(sio_t *sio, al_t *al, void *u, sio_rc_t orc)
{
/* drop all data into the bit bucket */
al_splice(al, 0, al_bytes(al), NULL, NULL);
@@ -85,7 +85,7 @@
}
static
-sio_rc_t hole_output(sio_t *sio, al_t *al, void *u)
+sio_rc_t hole_output(sio_t *sio, al_t *al, void *u, sio_rc_t orc)
{
/* drop all data into the bit bucket */
al_splice(al, 0, al_bytes(al), NULL, NULL);
|