Mercurial > hg > early-roguelike
comparison arogue5/daemons.c @ 107:f2951c4e28d9
Rename daemon() to start_daemon().
daemon() conflicted with the standard library function, which is
included by default on OS X.
| author | John "Elwin" Edwards |
|---|---|
| date | Sat, 07 Sep 2013 08:08:00 -0400 |
| parents | 0ed67132cf10 |
| children | 56e748983fa8 |
comparison
equal
deleted
inserted
replaced
| 106:c191a735f811 | 107:f2951c4e28d9 |
|---|---|
| 100 * Called when it is time to start rolling for wandering monsters | 100 * Called when it is time to start rolling for wandering monsters |
| 101 */ | 101 */ |
| 102 | 102 |
| 103 swander() | 103 swander() |
| 104 { | 104 { |
| 105 daemon(rollwand, 0, BEFORE); | 105 start_daemon(rollwand, 0, BEFORE); |
| 106 } | 106 } |
| 107 | 107 |
| 108 /* | 108 /* |
| 109 * rollwand: | 109 * rollwand: |
| 110 * Called to roll to see if a wandering monster starts up | 110 * Called to roll to see if a wandering monster starts up |
