comparison xrogue/daemons.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 e6179860cb76
children f54901b9c39b
comparison
equal deleted inserted replaced
150:a307ff9cd95e 151:cadff8f047a1
111 * Called when it is time to start rolling for wandering monsters 111 * Called when it is time to start rolling for wandering monsters
112 */ 112 */
113 113
114 swander() 114 swander()
115 { 115 {
116 daemon(rollwand, (VOID *)NULL, BEFORE); 116 start_daemon(rollwand, (VOID *)NULL, BEFORE);
117 } 117 }
118 118
119 /* 119 /*
120 * rollwand: 120 * rollwand:
121 * Called to roll to see if a wandering monster starts up 121 * Called to roll to see if a wandering monster starts up