]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/bio/bio_lcl.h
Run util/openssl-format-source -v -c .
[thirdparty/openssl.git] / crypto / bio / bio_lcl.h
CommitLineData
ea1b02db
AP
1#include <openssl/bio.h>
2
3#if BIO_FLAGS_UPLINK==0
4/* Shortcut UPLINK calls on most platforms... */
40720ce3
MC
5# define UP_stdin stdin
6# define UP_stdout stdout
7# define UP_stderr stderr
8# define UP_fprintf fprintf
9# define UP_fgets fgets
10# define UP_fread fread
11# define UP_fwrite fwrite
12# undef UP_fsetmod
13# define UP_feof feof
14# define UP_fclose fclose
ea1b02db 15
40720ce3
MC
16# define UP_fopen fopen
17# define UP_fseek fseek
18# define UP_ftell ftell
19# define UP_fflush fflush
20# define UP_ferror ferror
21# define UP_fileno fileno
ea1b02db 22
40720ce3
MC
23# define UP_open open
24# define UP_read read
25# define UP_write write
26# define UP_lseek lseek
27# define UP_close close
ea1b02db 28#endif