summaryrefslogtreecommitdiff
path: root/lib/tevent
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2022-01-23 15:34:57 +0100
committerVolker Lendecke <vl@samba.org>2022-02-03 13:18:29 +0000
commit6509715c037bd63fad77eb8e96647d89e61bc44c (patch)
tree679e7dfe61950c0dbd59766485dad7016f2cc172 /lib/tevent
parentca60f6350d566b7ecc822bcbb44fb65a1d150bbe (diff)
downloadsamba-6509715c037bd63fad77eb8e96647d89e61bc44c.tar.gz
tevent: add missing `#include <sys/types.h>`
The following functions use `pid_t` in their interface: * `tevent_req_profile_get_status` * `tevent_req_profile_set_status` BUG: https://bugs.gentoo.org/828720 Signed-off-by: David Seifert <soap@gentoo.org> Reviewed-by: Volker Lendecke <vl@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org> Autobuild-User(master): Volker Lendecke <vl@samba.org> Autobuild-Date(master): Thu Feb 3 13:18:29 UTC 2022 on sn-devel-184
Diffstat (limited to 'lib/tevent')
-rw-r--r--lib/tevent/tevent.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/tevent/tevent.h b/lib/tevent/tevent.h
index aaa5a068c55..2d1863d7c6e 100644
--- a/lib/tevent/tevent.h
+++ b/lib/tevent/tevent.h
@@ -31,6 +31,7 @@
#include <stdint.h>
#include <talloc.h>
#include <sys/time.h>
+#include <sys/types.h>
#include <stdbool.h>
/* for old gcc releases that don't have the feature test macro __has_attribute */