Rename daemon() to start_daemon().
daemon() conflicted with the standard library function, which is included by default on OS X.
This commit is contained in:
parent
05b8759305
commit
720d587422
12 changed files with 25 additions and 25 deletions
|
|
@ -84,10 +84,10 @@ reg int (*func)();
|
|||
|
||||
|
||||
/*
|
||||
* daemon:
|
||||
* start_daemon:
|
||||
* Start a daemon, takes a function.
|
||||
*/
|
||||
daemon(func, arg, type)
|
||||
start_daemon(func, arg, type)
|
||||
reg int arg, type, (*func)();
|
||||
{
|
||||
reg struct delayed_action *dev;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue