Make STACK_OF opaque.
[openssl.git] / crypto / stack / stack.c
index 758ace941fb82ea64ff57caba7ecf875375506a9..1b89f551f1559e4e05940ecf5bb667269285ad10 100644 (file)
 #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