diff options
author | 2014-05-24 13:56:18 +0000 | |
---|---|---|
committer | 2014-05-24 13:56:18 +0000 | |
commit | e5790aa5fd88cddc728d60a74f7e9af641d1bae6 (patch) | |
tree | aba26ad000932c73a748b6d6b61cbe3e1e474aeb | |
parent | Move the regress tests that are in lib/libssl to usr.sbin/openssl, (diff) | |
download | wireguard-openbsd-e5790aa5fd88cddc728d60a74f7e9af641d1bae6.tar.xz wireguard-openbsd-e5790aa5fd88cddc728d60a74f7e9af641d1bae6.zip |
make this compile again - actually include stdio and friends ourselves.
-rw-r--r-- | regress/lib/libcrypto/pqueue/pq_test.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/regress/lib/libcrypto/pqueue/pq_test.c b/regress/lib/libcrypto/pqueue/pq_test.c index 7a69f0cf597..a078ba53666 100644 --- a/regress/lib/libcrypto/pqueue/pq_test.c +++ b/regress/lib/libcrypto/pqueue/pq_test.c @@ -56,7 +56,9 @@ * Hudson (tjh@cryptsoft.com). * */ - +#include <stdio.h> +#include <stdlib.h> +#include <string.h> #include "pqueue.h" /* remember to change expected.txt if you change these values */ |