From 86fdcc4c254d6342975a9c4e044d834299573635 Mon Sep 17 00:00:00 2001 From: David Berry Date: Thu, 28 Oct 2021 18:51:29 +0100 Subject: [PATCH] Include missing header files for int types --- src/channel.c | 2 ++ src/channel.h | 1 + src/keymap.c | 2 ++ src/xmlchan.c | 2 ++ src/yamlchan.c | 2 ++ 5 files changed, 9 insertions(+) diff --git a/src/channel.c b/src/channel.c index 2a490a69..fefae8cc 100644 --- a/src/channel.c +++ b/src/channel.c @@ -177,6 +177,8 @@ f - AST_WRITE: Write an Object to a Channel #include #include #include +#include +#include /* Module Variables. */ /* ================= */ diff --git a/src/channel.h b/src/channel.h index 200de3ed..095197c2 100644 --- a/src/channel.h +++ b/src/channel.h @@ -231,6 +231,7 @@ /* C header files. */ /* --------------- */ #include +#include /* Macros */ /* ====== */ diff --git a/src/keymap.c b/src/keymap.c index d7d33615..6f612d0c 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -269,6 +269,8 @@ f - AST_MAPTYPE: Return the data type of a named entry in a map #include #include #include +#include +#include /* Type Definitions */ /* ================ */ diff --git a/src/xmlchan.c b/src/xmlchan.c index ff127659..65a46095 100644 --- a/src/xmlchan.c +++ b/src/xmlchan.c @@ -256,6 +256,8 @@ f The XmlChan class does not define any new routines beyond those #include #include #include +#include +#include /* Type Definitions */ /* ================ */ diff --git a/src/yamlchan.c b/src/yamlchan.c index ebd23b12..6b10cd9f 100644 --- a/src/yamlchan.c +++ b/src/yamlchan.c @@ -278,6 +278,8 @@ static int nest_type[ 100 ]; #include #include #include +#include +#include /* Include the libyaml header if it is available. Otherwise, define local stubs for the selected definitions in yaml.h */