diff xrogue/daemon.c @ 236:7c1cb43f346e

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.
author John "Elwin" Edwards
date Mon, 07 Mar 2016 20:44:01 -0500
parents b67b99f6c92b
children e1cd27c5464f
line wrap: on
line diff
--- a/xrogue/daemon.c	Mon Mar 07 19:26:08 2016 -0500
+++ b/xrogue/daemon.c	Mon Mar 07 20:44:01 2016 -0500
@@ -91,7 +91,7 @@
  */
 
 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 @@
  */
 
 void
-fuse(void (*dfunc)(), VOID *arg, int time, int type)
+fuse(void (*dfunc)(), void *arg, int time, int type)
 {
         reg struct delayed_action *wire;