diff xrogue/daemon.c @ 151:cadff8f047a1

arogue7, xrogue: rename daemon() to start_daemon(). This prevents conflict with the BSD/OSX daemon() system function.
author John "Elwin" Edwards
date Thu, 28 May 2015 10:21:43 -0400
parents cfa9d1609b78
children f54901b9c39b
line wrap: on
line diff
--- a/xrogue/daemon.c	Thu May 28 09:41:29 2015 -0400
+++ b/xrogue/daemon.c	Thu May 28 10:21:43 2015 -0400
@@ -87,11 +87,11 @@
 }
 
 /*
- * daemon:
+ * start_daemon:
  *      Start a daemon, takes a function.
  */
 
-daemon(dfunc, arg, type)
+start_daemon(dfunc, arg, type)
 reg VOID  *arg;
 reg int type, (*dfunc)();
 {