mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-05 20:13:23 -05:00
19 lines
312 B
C
19 lines
312 B
C
/*
|
|
* $Id$
|
|
* Copyright (C) 2006 Ron Pedde (rpedde@users.sourceforge.net)
|
|
*
|
|
*/
|
|
|
|
#ifndef _OS_UNIX_H_
|
|
#define _OS_UNIX_H_
|
|
|
|
#define PATHSEP '/'
|
|
#define PATHSEP_STR "/"
|
|
#define OS_SOCKETTYPE unsigned int
|
|
|
|
/* unix-specific functions */
|
|
extern int os_drop_privs(char *user);
|
|
void os_set_pidfile(char *file);
|
|
#endif
|
|
|