Add missing prototype.

This commit is contained in:
Ralf Corsepius
2008-08-01 05:13:02 +00:00
parent 1cf6c144ed
commit 5742e5e278
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ typedef uint8_t VB; /* unpredictable data type (8-bit size) */
typedef void *VP; /* pointer to an unpredictable data type */
typedef void (*FP)(); /* program start address */
typedef void (*FP)(void); /* program start address */
/*
* 6.4 Data Types
+1 -1
View File
@@ -3441,7 +3441,7 @@ uint32_t s,us;
}
uint32_t
nfsGetTimeout()
nfsGetTimeout( void )
{
rtems_interrupt_level k;
uint32_t s,us;
+1 -1
View File
@@ -92,7 +92,7 @@ typedef enum {
} Thread_Start_types;
/** This type corresponds to a very simple style thread entry point. */
typedef Thread ( *Thread_Entry )(); /* basic type */
typedef Thread ( *Thread_Entry )( void ); /* basic type */
/** This type corresponds to a thread entry point which takes a single
* unsigned thirty-two bit integer as an argument.