]> granicus.if.org Git - openssl/commitdiff
Fix from HEAD.
authorDr. Stephen Henson <steve@openssl.org>
Sat, 14 May 2005 12:59:05 +0000 (12:59 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Sat, 14 May 2005 12:59:05 +0000 (12:59 +0000)
crypto/stack/safestack.h

index 4f0c9d411d0b2607deda1997c9b69cf9184c0b2f..6010b7f122fc5f86256fe6dbaf9313d1dff32a33 100644 (file)
 #ifndef HEADER_SAFESTACK_H
 #define HEADER_SAFESTACK_H
 
+typedef void (*openssl_fptr)(void);
+#define openssl_fcast(f) ((openssl_fptr)f)
+
 #include <openssl/stack.h>
 
 #ifdef DEBUG_SAFESTACK
 
-typedef void (*openssl_fptr)(void);
-#define openssl_fcast(f) ((openssl_fptr)f)
-
 #define STACK_OF(type) struct stack_st_##type
 #define PREDECLARE_STACK_OF(type) STACK_OF(type);