summaryrefslogtreecommitdiffstats
path: root/lib/libutil
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2014-07-13 21:21:25 +0000
committertedu <tedu@openbsd.org>2014-07-13 21:21:25 +0000
commitb283bc0404342bb94a14d8e040ad745a156f2ff7 (patch)
tree34fc83c893819662c026dacd6bc4b5ffe85a5ca8 /lib/libutil
parentfix even more trailing tabs (diff)
downloadwireguard-openbsd-b283bc0404342bb94a14d8e040ad745a156f2ff7.tar.xz
wireguard-openbsd-b283bc0404342bb94a14d8e040ad745a156f2ff7.zip
include stdint.h for standard ints. from Jean-Philippe Ouellet
Diffstat (limited to 'lib/libutil')
-rw-r--r--lib/libutil/bcrypt_pbkdf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libutil/bcrypt_pbkdf.c b/lib/libutil/bcrypt_pbkdf.c
index 7394667cffa..839773b3a64 100644
--- a/lib/libutil/bcrypt_pbkdf.c
+++ b/lib/libutil/bcrypt_pbkdf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bcrypt_pbkdf.c,v 1.8 2014/06/30 00:26:22 deraadt Exp $ */
+/* $OpenBSD: bcrypt_pbkdf.c,v 1.9 2014/07/13 21:21:25 tedu Exp $ */
/*
* Copyright (c) 2013 Ted Unangst <tedu@openbsd.org>
*
@@ -17,6 +17,7 @@
#include <sys/param.h>
+#include <stdint.h>
#include <stdlib.h>
#include <blf.h>
#include <sha2.h>