mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
Merge pull request #931 from fobser/missing-prototypes
Prevent warnings from -Wmissing-prototypes.
This commit is contained in:
commit
5ab4a9330a
2 changed files with 6 additions and 0 deletions
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue