diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2006-11-16 00:19:39 +0000 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2006-11-16 00:19:39 +0000 |
commit | de12116417081f7b834bca4a583f97169040ce52 (patch) | |
tree | 84f4f8286418d1fc35d1837019701277a208e921 /crypto/ui | |
parent | 28b987aec9474e8c0cf1cc12273018edf3a1eca1 (diff) | |
download | openssl-new-de12116417081f7b834bca4a583f97169040ce52.tar.gz |
Initial, incomplete support for typesafe macros without using function
casts.
Diffstat (limited to 'crypto/ui')
-rw-r--r-- | crypto/ui/ui.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ui/ui.h b/crypto/ui/ui.h index 018296412b..c343595a39 100644 --- a/crypto/ui/ui.h +++ b/crypto/ui/ui.h @@ -287,8 +287,8 @@ UI_METHOD *UI_OpenSSL(void); /* The UI_STRING type is the data structure that contains all the needed info about a string or a prompt, including test data for a verification prompt. */ -DECLARE_STACK_OF(UI_STRING) typedef struct ui_string_st UI_STRING; +DECLARE_STACK_OF(UI_STRING) /* The different types of strings that are currently supported. This is only needed by method authors. */ |