diff options
author | Rob Austein <sra@hactrn.net> | 2006-06-20 17:32:05 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2006-06-20 17:32:05 +0000 |
commit | eca4feb580cffd6af474f599efe3fe99505a525c (patch) | |
tree | 59fa47c6f197931d6da746cadf7ad37ff1ec4557 /openssl/vendor/current/crypto/bio/bio_lcl.h |
Importing OpenSSL 0.9.8b
svn path=/openssl/vendor/current/CHANGES; revision=1
Diffstat (limited to 'openssl/vendor/current/crypto/bio/bio_lcl.h')
-rw-r--r-- | openssl/vendor/current/crypto/bio/bio_lcl.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/openssl/vendor/current/crypto/bio/bio_lcl.h b/openssl/vendor/current/crypto/bio/bio_lcl.h new file mode 100644 index 00000000..dba2919d --- /dev/null +++ b/openssl/vendor/current/crypto/bio/bio_lcl.h @@ -0,0 +1,28 @@ +#include <openssl/bio.h> + +#if BIO_FLAGS_UPLINK==0 +/* Shortcut UPLINK calls on most platforms... */ +#define UP_stdin stdin +#define UP_stdout stdout +#define UP_stderr stderr +#define UP_fprintf fprintf +#define UP_fgets fgets +#define UP_fread fread +#define UP_fwrite fwrite +#undef UP_fsetmod +#define UP_feof feof +#define UP_fclose fclose + +#define UP_fopen fopen +#define UP_fseek fseek +#define UP_ftell ftell +#define UP_fflush fflush +#define UP_ferror ferror +#define UP_fileno fileno + +#define UP_open open +#define UP_read read +#define UP_write write +#define UP_lseek lseek +#define UP_close close +#endif |