Add missing prototypes.

This commit is contained in:
Ralf Corsepius
2008-08-01 05:01:28 +00:00
parent 22cee0a485
commit a5fb40cf68
2 changed files with 3 additions and 3 deletions

View File

@@ -178,7 +178,7 @@ extern rtems_bdbuf_config rtems_bdbuf_configuration;
* successfully or error code if error is occured)
*/
rtems_status_code
rtems_bdbuf_init ();
rtems_bdbuf_init (void);
/**
* Get block buffer for data to be written into. The buffers is set to the

View File

@@ -902,7 +902,7 @@ rtems_bdbuf_append_modified (rtems_bdbuf_pool* pool, rtems_bdbuf_buffer* bd)
* Wait the swapper task.
*/
static void
rtems_bdbuf_wake_swapper ()
rtems_bdbuf_wake_swapper (void)
{
rtems_status_code sc = rtems_event_send (rtems_bdbuf_ctx.swapout,
RTEMS_BDBUF_SWAPOUT_SYNC);
@@ -1090,7 +1090,7 @@ rtems_bdbuf_release_pool (rtems_bdpool_id pid)
* successfully or error code if error is occured)
*/
rtems_status_code
rtems_bdbuf_init ()
rtems_bdbuf_init (void)
{
rtems_bdpool_id p;
rtems_status_code sc;