Prevent warnings from -Wmissing-prototypes.

This commit is contained in:
Florian Obser 2023-09-05 17:35:30 +02:00
parent 10843805ac
commit 2cd7c719ef
2 changed files with 6 additions and 0 deletions

View File

@ -39,6 +39,7 @@
* This file contains functions for RFC 1982 serial number arithmetic. * This file contains functions for RFC 1982 serial number arithmetic.
*/ */
#include "config.h" #include "config.h"
#include "util/rfc_1982.h"
int int
compare_1982(uint32_t a, uint32_t b) compare_1982(uint32_t a, uint32_t b)

View File

@ -26,6 +26,11 @@
*/ */
#include "config.h" #include "config.h"
/** EDIT
* prevent warning from -Wmissing-prototypes
*/
#include "util/siphash.h"
/* default: SipHash-2-4 */ /* default: SipHash-2-4 */
#define cROUNDS 2 #define cROUNDS 2
#define dROUNDS 4 #define dROUNDS 4