Merge pull request #931 from fobser/missing-prototypes

Prevent warnings from -Wmissing-prototypes.
This commit is contained in:
Wouter Wijngaards 2023-09-06 09:49:23 +02:00 committed by GitHub
commit 5ab4a9330a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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.
*/
#include "config.h"
#include "util/rfc_1982.h"
int
compare_1982(uint32_t a, uint32_t b)

View file

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