mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-08 05:23:25 -05:00
16 lines
233 B
C
16 lines
233 B
C
|
/*
|
||
|
* $Id$
|
||
|
* Copyright (C) 2006 Ron Pedde (rpedde@users.sourceforge.net)
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef _OS_UNIX_H_
|
||
|
#define _OS_UNIX_H_
|
||
|
|
||
|
/* unix-specific functions */
|
||
|
extern int os_drop_privs(char *user);
|
||
|
void os_set_pidfile(char *file);
|
||
|
|
||
|
#endif
|
||
|
|