]> git.ipfire.org Git - thirdparty/FORT-validator.git/commitdiff
Regular update of system #includes
authorAlberto Leiva Popper <ydahhrk@gmail.com>
Wed, 22 Nov 2023 17:00:27 +0000 (11:00 -0600)
committerAlberto Leiva Popper <ydahhrk@gmail.com>
Wed, 22 Nov 2023 17:00:27 +0000 (11:00 -0600)
src/json_util.c
src/json_util.h
src/object/tal.c
src/rrdp.c
src/types/uri.c
src/types/uri.h

index 973243e5a1124401c2df39739cc72e7940036a2e..e69f2240df0d22b75781a9ab25fb2d162be849c9 100644 (file)
@@ -2,6 +2,7 @@
 
 #include <errno.h>
 #include <limits.h>
+#include <time.h>
 #include "log.h"
 
 int
index ebb98fa1fb17b4bcc52f5f1b665ea6fef22d1765..5c6dc959968d846998491d4b87958d124a7a8491 100644 (file)
@@ -1,7 +1,10 @@
 #ifndef SRC_JSON_UTIL_H_
 #define SRC_JSON_UTIL_H_
 
+#include <arpa/inet.h>
 #include <jansson.h>
+#include <netdb.h>
+#include <netinet/in.h>
 #include <stdbool.h>
 #include <stddef.h>
 #include <stdint.h>
@@ -9,9 +12,9 @@
 #include <stdlib.h>
 #include <string.h>
 #include <strings.h>
+#include <sys/stat.h>
 #include <sys/types.h>
 #include <unistd.h>
-#include <time.h>
 
 /*
  * Contract of get functions:
index 4fac0b13c48ae36c0d9e3a89a812d3fb0067d431..9289343f2b09a1091dc2f7ca0ba6f02a29517200 100644 (file)
@@ -3,6 +3,7 @@
 #include <errno.h>
 #include <openssl/evp.h>
 #include <sys/queue.h>
+#include <time.h>
 
 #include "alloc.h"
 #include "cert_stack.h"
index 42a185fc2be7b7388f91c7c8168945929d684cbc..1aabe5ee7882c399c418de1accb88a64c7750bfc 100644 (file)
@@ -1,9 +1,8 @@
 #include "rrdp.h"
 
 #include <ctype.h>
-#include <errno.h>
+#include <openssl/bn.h>
 #include <openssl/evp.h>
-#include <sys/stat.h>
 
 #include "alloc.h"
 #include "common.h"
index 8cc4129a6c6496ddfc1f583a21a7a4649c332592..3e30bfb2e276986d3187988d449f10d2769dc972 100644 (file)
@@ -1,6 +1,5 @@
 #include "types/uri.h"
 
-#include <errno.h>
 
 #include "alloc.h"
 #include "common.h"
index 7cff41cd1d67d38ec3f8032c0474d5e067d627b9..9c417a4a50c1a951cff2f830f782c50b317f8a9e 100644 (file)
@@ -1,7 +1,6 @@
 #ifndef SRC_TYPES_URI_H_
 #define SRC_TYPES_URI_H_
 
-#include <stdbool.h>
 #include "asn1/asn1c/IA5String.h"
 #include "data_structure/array_list.h"