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

Side by Side Diff: third_party/c99/include/inttypes.h

Issue 624713003: Keep only base/extractor.[cc|h]. (Closed) Base URL: https://chromium.googlesource.com/external/omaha.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « third_party/build.scons ('k') | third_party/chrome/base/basictypes.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 //
2 // Posix integer types, defined in terms of native Windows types.
3
4 #ifndef __INTTYPES_H_
5 #define __INTTYPES_H_
6
7 typedef __int8 int8_t;
8 typedef __int16 int16_t;
9 typedef __int32 int32_t;
10 typedef __int64 int64_t;
11 typedef unsigned __int8 uint8_t;
12 typedef unsigned __int16 uint16_t;
13 typedef unsigned __int32 uint32_t;
14 typedef unsigned __int64 uint64_t;
15 typedef uint8_t u_int8_t;
16 typedef uint16_t u_int16_t;
17 typedef uint32_t u_int32_t;
18 typedef uint64_t u_int64_t;
19
20 #endif // __INTTYPES_H_
OLDNEW
« no previous file with comments | « third_party/build.scons ('k') | third_party/chrome/base/basictypes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698