summaryrefslogtreecommitdiff
path: root/lib/libcrypto/rsa/rsa_pk1.c
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2014-07-10 13:58:24 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2014-07-10 13:58:24 +0000
commit976eedf2eb3dba06d2b6a3a84881acedabf9e02f (patch)
tree56afff71b6b09fb7bbc0b85cbf602c9bc7dec3a6 /lib/libcrypto/rsa/rsa_pk1.c
parent87cb008b53ce21f21a02cae1854c063d2b74fb8e (diff)
Stop including standard headers via cryptlib.h - pull in the headers that
are needed in the source files that actually require them. ok beck@ miod@
Diffstat (limited to 'lib/libcrypto/rsa/rsa_pk1.c')
-rw-r--r--lib/libcrypto/rsa/rsa_pk1.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypto/rsa/rsa_pk1.c b/lib/libcrypto/rsa/rsa_pk1.c
index b4434b455a8..6d11ee19f9a 100644
--- a/lib/libcrypto/rsa/rsa_pk1.c
+++ b/lib/libcrypto/rsa/rsa_pk1.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rsa_pk1.c,v 1.11 2014/07/10 11:25:13 tedu Exp $ */
+/* $OpenBSD: rsa_pk1.c,v 1.12 2014/07/10 13:58:23 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -57,6 +57,8 @@
*/
#include <stdio.h>
+#include <string.h>
+
#include "cryptlib.h"
#include <openssl/bn.h>
#include <openssl/rsa.h>