build: add missing includes to header files

This change adds necessary `#include` directives that were previously
omitted in some header files. Without these includes, compilation
could fail or produce undefined behavior when the headers are used
in isolation (i.e., before their dependencies are included elsewhere).

Ensures better modularity and reliability of header usage.
This commit is contained in:
2025-06-24 23:56:25 +02:00
committed by jabber.developer
parent e33c7a477d
commit b8e1a63f93
9 changed files with 18 additions and 0 deletions

View File

@@ -36,6 +36,8 @@
#ifndef PGP_GPG_H
#define PGP_GPG_H
#include "glib.h"
typedef struct pgp_key_t
{
char* id;