XRogue: get rid of VOID as an alias for long.
Maybe some compilers in 1986 didn't handle void pointers well, but they are no longer a concern.
This commit is contained in:
parent
090622896b
commit
e9c84b2637
19 changed files with 57 additions and 62 deletions
|
|
@ -91,7 +91,7 @@ find_slot(void (*func)())
|
|||
*/
|
||||
|
||||
void
|
||||
start_daemon(void (*dfunc)(), VOID *arg, int type)
|
||||
start_daemon(void (*dfunc)(), void *arg, int type)
|
||||
{
|
||||
reg struct delayed_action *dev;
|
||||
|
||||
|
|
@ -164,7 +164,7 @@ do_daemons(int flag)
|
|||
*/
|
||||
|
||||
void
|
||||
fuse(void (*dfunc)(), VOID *arg, int time, int type)
|
||||
fuse(void (*dfunc)(), void *arg, int time, int type)
|
||||
{
|
||||
reg struct delayed_action *wire;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue