1
0
Fork 0
mirror of https://github.com/yarrick/iodine.git synced 2025-04-04 13:53:34 +03:00

Fix compiling error on Alpine

On latest Alpine, declaration of 'daemon' is "int daemon(int, int);"
This commit is contained in:
Moeyoo 2019-07-30 16:06:33 +08:00 committed by GitHub
parent 27e5d6fadd
commit 0dbbc611d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,7 @@ const unsigned char raw_header[RAW_HDR_LEN] = { 0x10, 0xd1, 0x9e, 0x00 };
/* daemon(3) exists only in 4.4BSD or later, and in GNU libc */
#if !defined(ANDROID) && !defined(WINDOWS32) && !(defined(BSD) && (BSD >= 199306)) && !defined(__GLIBC__)
static int daemon(int nochdir, int noclose)
int daemon(int nochdir, int noclose)
{
int fd, i;