diff options
Diffstat (limited to 'src/lib/libssl/src/apps/apps.h')
-rw-r--r-- | src/lib/libssl/src/apps/apps.h | 25 |
1 files changed, 8 insertions, 17 deletions
diff --git a/src/lib/libssl/src/apps/apps.h b/src/lib/libssl/src/apps/apps.h index 25a9262e03..063f9c65be 100644 --- a/src/lib/libssl/src/apps/apps.h +++ b/src/lib/libssl/src/apps/apps.h | |||
@@ -59,11 +59,11 @@ | |||
59 | #ifndef HEADER_APPS_H | 59 | #ifndef HEADER_APPS_H |
60 | #define HEADER_APPS_H | 60 | #define HEADER_APPS_H |
61 | 61 | ||
62 | #include "e_os.h" | 62 | #include "openssl/e_os.h" |
63 | 63 | ||
64 | #include "buffer.h" | 64 | #include <openssl/buffer.h> |
65 | #include "bio.h" | 65 | #include <openssl/bio.h> |
66 | #include "crypto.h" | 66 | #include <openssl/crypto.h> |
67 | #include "progs.h" | 67 | #include "progs.h" |
68 | 68 | ||
69 | #ifdef NO_STDIO | 69 | #ifdef NO_STDIO |
@@ -88,7 +88,7 @@ extern BIO *bio_err; | |||
88 | #else | 88 | #else |
89 | 89 | ||
90 | #define MAIN(a,v) PROG(a,v) | 90 | #define MAIN(a,v) PROG(a,v) |
91 | #include "conf.h" | 91 | #include <openssl/conf.h> |
92 | extern LHASH *config; | 92 | extern LHASH *config; |
93 | extern char *default_config_file; | 93 | extern char *default_config_file; |
94 | extern BIO *bio_err; | 94 | extern BIO *bio_err; |
@@ -122,25 +122,16 @@ extern BIO *bio_err; | |||
122 | #endif | 122 | #endif |
123 | 123 | ||
124 | typedef struct args_st | 124 | typedef struct args_st |
125 | { | 125 | { |
126 | char **data; | 126 | char **data; |
127 | int count; | 127 | int count; |
128 | } ARGS; | 128 | } ARGS; |
129 | 129 | ||
130 | #ifndef NOPROTO | ||
131 | int should_retry(int i); | 130 | int should_retry(int i); |
132 | int args_from_file(char *file, int *argc, char **argv[]); | 131 | int args_from_file(char *file, int *argc, char **argv[]); |
133 | int str2fmt(char *s); | 132 | int str2fmt(char *s); |
134 | void program_name(char *in,char *out,int size); | 133 | void program_name(char *in,char *out,int size); |
135 | int chopup_args(ARGS *arg,char *buf, int *argc, char **argv[]); | 134 | int chopup_args(ARGS *arg,char *buf, int *argc, char **argv[]); |
136 | #else | ||
137 | int should_retry(); | ||
138 | int args_from_file(); | ||
139 | int str2fmt(); | ||
140 | void program_name(); | ||
141 | int chopup_args(); | ||
142 | #endif | ||
143 | |||
144 | #define FORMAT_UNDEF 0 | 135 | #define FORMAT_UNDEF 0 |
145 | #define FORMAT_ASN1 1 | 136 | #define FORMAT_ASN1 1 |
146 | #define FORMAT_TEXT 2 | 137 | #define FORMAT_TEXT 2 |