ossp-pkg/sio/sio_null.c 1.5 -> 1.6
--- sio_null.c 2002/11/14 15:56:10 1.5
+++ sio_null.c 2002/11/24 19:36:48 1.6
@@ -97,6 +97,12 @@
return SIO_OK;
}
+static
+sio_rc_t null_shutdown(sio_t *sio, al_t *al, void *u)
+{
+ return SIO_OK;
+}
+
sio_module_t sio_module_null = {
"null",
null_init,
@@ -107,6 +113,7 @@
null_openw,
null_closew,
null_input,
- null_output
+ null_output,
+ null_shutdown
};
|
|