summaryrefslogtreecommitdiffstats
path: root/crypto/stack/stack.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-03-05 15:17:33 +0000
committerDr. Stephen Henson <steve@openssl.org>2015-03-05 15:51:03 +0000
commit31c2b6ee7a5bc69b9bfc7eb96f4fa30f3a2681bd (patch)
tree1b46cdd0fc684813553d03ab6ccd97468d9b0904 /crypto/stack/stack.c
parentd62bc5d30f7d9519aeff9160f98b9ad9aa592c41 (diff)
Make STACK_OF opaque.
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto/stack/stack.c')
-rw-r--r--crypto/stack/stack.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/crypto/stack/stack.c b/crypto/stack/stack.c
index 758ace941f..1b89f551f1 100644
--- a/crypto/stack/stack.c
+++ b/crypto/stack/stack.c
@@ -60,6 +60,14 @@
#include <openssl/stack.h>
#include <openssl/objects.h>
+struct stack_st {
+ int num;
+ char **data;
+ int sorted;
+ int num_alloc;
+ int (*comp) (const void *, const void *);
+};
+
#undef MIN_NODES
#define MIN_NODES 4