Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1252)

Side by Side Diff: openssl/crypto/bio/bio_lcl.h

Issue 9254031: Upgrade chrome's OpenSSL to same version Android ships with. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: '' Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « openssl/crypto/bio/bio_err.c ('k') | openssl/crypto/bio/bio_lib.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include <openssl/bio.h> 1 #include <openssl/bio.h>
2 2
3 #if BIO_FLAGS_UPLINK==0 3 #if BIO_FLAGS_UPLINK==0
4 /* Shortcut UPLINK calls on most platforms... */ 4 /* Shortcut UPLINK calls on most platforms... */
5 #define UP_stdin stdin 5 #define UP_stdin stdin
6 #define UP_stdout stdout 6 #define UP_stdout stdout
7 #define UP_stderr stderr 7 #define UP_stderr stderr
8 #define UP_fprintf fprintf 8 #define UP_fprintf fprintf
9 #define UP_fgets fgets 9 #define UP_fgets fgets
10 #define UP_fread fread 10 #define UP_fread fread
11 #define UP_fwrite fwrite 11 #define UP_fwrite fwrite
12 #undef UP_fsetmod 12 #undef UP_fsetmod
13 #define UP_feof feof 13 #define UP_feof feof
14 #define UP_fclose fclose 14 #define UP_fclose fclose
15 15
16 #define UP_fopen fopen 16 #define UP_fopen fopen
17 #define UP_fseek fseek 17 #define UP_fseek fseek
18 #define UP_ftell ftell 18 #define UP_ftell ftell
19 #define UP_fflush fflush 19 #define UP_fflush fflush
20 #define UP_ferror ferror 20 #define UP_ferror ferror
21 #ifdef _WIN32
22 #define UP_fileno _fileno
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
28 #else
21 #define UP_fileno fileno 29 #define UP_fileno fileno
22
23 #define UP_open open 30 #define UP_open open
24 #define UP_read read 31 #define UP_read read
25 #define UP_write write 32 #define UP_write write
26 #define UP_lseek lseek 33 #define UP_lseek lseek
27 #define UP_close close 34 #define UP_close close
28 #endif 35 #endif
36 #endif
OLDNEW
« no previous file with comments | « openssl/crypto/bio/bio_err.c ('k') | openssl/crypto/bio/bio_lib.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698