diff options
Diffstat (limited to 'src/ipc.c')
-rw-r--r-- | src/ipc.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ -// SPDX-License-Identifier: GPL-2.0 +// SPDX-License-Identifier: GPL-2.0 OR MIT /* * Copyright (C) 2015-2020 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ @@ -7,6 +7,7 @@ #include <stdlib.h> #include <errno.h> #include "containers.h" +#include "ipc.h" struct string_list { char *buffer; @@ -44,6 +45,10 @@ static int string_list_add(struct string_list *list, const char *str) #include "ipc-linux.h" #elif defined(__OpenBSD__) #include "ipc-openbsd.h" +#elif defined(__FreeBSD__) +#include "ipc-freebsd.h" +#elif defined(_WIN32) +#include "ipc-windows.h" #endif /* first\0second\0third\0forth\0last\0\0 */ |