Do not need sys/param.h
authorderaadt <deraadt@openbsd.org>
Wed, 7 Jan 2015 21:34:23 +0000 (21:34 +0000)
committerderaadt <deraadt@openbsd.org>
Wed, 7 Jan 2015 21:34:23 +0000 (21:34 +0000)
lib/libutil/bcrypt_pbkdf.c
lib/libutil/pkcs5_pbkdf2.c

index 9cecf9a..106f7eb 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: bcrypt_pbkdf.c,v 1.10 2014/12/30 01:41:43 djm Exp $ */
+/* $OpenBSD: bcrypt_pbkdf.c,v 1.11 2015/01/07 21:34:23 deraadt Exp $ */
 /*
  * Copyright (c) 2013 Ted Unangst <tedu@openbsd.org>
  *
@@ -15,7 +15,7 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <sys/param.h>
+#include <sys/types.h>
 
 #include <stdint.h>
 #include <stdlib.h>
index 2d07ea0..bd66339 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pkcs5_pbkdf2.c,v 1.6 2014/01/31 16:56:32 tedu Exp $   */
+/*     $OpenBSD: pkcs5_pbkdf2.c,v 1.7 2015/01/07 21:34:23 deraadt Exp $        */
 
 /*-
  * Copyright (c) 2008 Damien Bergamini <damien.bergamini@free.fr>
@@ -17,7 +17,6 @@
  */
 
 #include <sys/types.h>
-#include <sys/param.h>
 
 #include <string.h>
 #include <limits.h>