diff options
author | Bodo Möller <bodo@openssl.org> | 1999-04-24 00:13:45 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-04-24 00:13:45 +0200 |
commit | ec577822f95a8bca0023c5c77cef1a4916822d4a (patch) | |
tree | 206e75c0178ff0719b87a4d94e261fc243ce42a8 /perl | |
parent | *.org files are gone for good. (diff) | |
download | openssl-ec577822f95a8bca0023c5c77cef1a4916822d4a.tar.xz openssl-ec577822f95a8bca0023c5c77cef1a4916822d4a.zip |
Change #include filenames from <foo.h> to <openssl.h>.
Submitted by:
Reviewed by:
PR:
Diffstat (limited to 'perl')
-rw-r--r-- | perl/openssl.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/perl/openssl.h b/perl/openssl.h index d1b6489ea7..52e6cfc89a 100644 --- a/perl/openssl.h +++ b/perl/openssl.h @@ -60,7 +60,7 @@ extern "C" { #endif #include "EXTERN.h" -#include "perl.h" +#include <openssl/perl.h> #include "XSUB.h" #ifdef __cplusplus @@ -72,13 +72,13 @@ typedef struct datum_st { int dsize; } datum; -#include "crypto.h" -#include "buffer.h" -#include "bio.h" -#include "evp.h" -#include "err.h" -#include "x509.h" -#include "ssl.h" +#include <openssl/crypto.h> +#include <openssl/buffer.h> +#include <openssl/bio.h> +#include <openssl/evp.h> +#include <openssl/err.h> +#include <openssl/x509.h> +#include <openssl/ssl.h> #ifdef DEBUG #define pr_name(name) printf("%s\n",name) |