diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2014-05-24 13:56:19 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2014-05-24 13:56:19 +0000 |
commit | bb3ddb2230a4127225ca15e4a3057c3b38f0d774 (patch) | |
tree | 4396407ff7cae98292ea1b836492d0de5ebdd7d1 | |
parent | e298b062ae2f36bd6aac4772d0a11b2f7f898a52 (diff) |
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 */ |