]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
Prevent warnings from -Wmissing-prototypes. 931/head
authorFlorian Obser <florian@narrans.de>
Tue, 5 Sep 2023 15:35:30 +0000 (17:35 +0200)
committerFlorian Obser <florian@narrans.de>
Tue, 5 Sep 2023 15:35:30 +0000 (17:35 +0200)
util/rfc_1982.c
util/siphash.c

index c28deded606b7fd1b96493aeef0dc880e8ed0ffa..cf64e21d08fb28c512c779f324429dfd62bd662e 100644 (file)
@@ -39,6 +39,7 @@
  * This file contains functions for RFC 1982 serial number arithmetic.
  */
 #include "config.h"
+#include "util/rfc_1982.h"
 
 int
 compare_1982(uint32_t a, uint32_t b)
index 0e1b597d0523f44744b14134aa2111143a6abaab..32797dff60e55fdc52b7bfb2a4da0bf8875a7497 100644 (file)
  */
 #include "config.h"
 
+/** EDIT
+  * prevent warning from -Wmissing-prototypes
+  */
+#include "util/siphash.h"
+
 /* default: SipHash-2-4 */
 #define cROUNDS 2
 #define dROUNDS 4