headers: add missing includes

Fixes #12125.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2019-03-28 15:55:09 +01:00 committed by Lennart Poettering
parent b8a736d7a0
commit f2dc22b447
3 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,7 @@
#pragma once
#include <inttypes.h>
#include <sys/uio.h>
#if HAVE_GCRYPT
# include <gcrypt.h>

View File

@ -2,6 +2,7 @@
#pragma once
#include <inttypes.h>
#include <sys/socket.h>
#include <sys/types.h>
#include "sd-id128.h"

View File

@ -1,6 +1,8 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
#include <sys/socket.h>
#include "journald-server.h"
void server_forward_wall(Server *s, int priority, const char *identifier, const char *message, const struct ucred *ucred);