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

Side by Side Diff: third_party/libusb/src/msvc/stdint.h

Issue 10332075: Adding use_system_libusb option for third_party/libusb (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review changes. Created 8 years, 7 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 | « third_party/libusb/src/msvc/lsusb_sources ('k') | tools/checklicenses/checklicenses.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /** 1 /**
2 * This file has no copyright assigned and is placed in the Public Domain. 2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file was originally part of the w64 mingw-runtime package. 3 * This file was originally part of the w64 mingw-runtime package.
4 */ 4 */
5 5
6 /* ISO C9x 7.18 Integer types <stdint.h> 6 /* ISO C9x 7.18 Integer types <stdint.h>
7 * Based on ISO/IEC SC22/WG14 9899 Committee draft (SC22 N2794) 7 * Based on ISO/IEC SC22/WG14 9899 Committee draft (SC22 N2794)
8 * 8 *
9 * THIS SOFTWARE IS NOT COPYRIGHTED 9 * THIS SOFTWARE IS NOT COPYRIGHTED
10 * 10 *
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 #define UINT8_C(val) (val) 247 #define UINT8_C(val) (val)
248 #define UINT16_C(val) (val) 248 #define UINT16_C(val) (val)
249 #define UINT32_C(val) (val##i32) 249 #define UINT32_C(val) (val##i32)
250 #define UINT64_C(val) val##ui64 250 #define UINT64_C(val) val##ui64
251 251
252 /* 7.18.4.2 Macros for greatest-width integer constants */ 252 /* 7.18.4.2 Macros for greatest-width integer constants */
253 #define INTMAX_C(val) val##i64 253 #define INTMAX_C(val) val##i64
254 #define UINTMAX_C(val) val##ui64 254 #define UINTMAX_C(val) val##ui64
255 255
256 #endif 256 #endif
OLDNEW
« no previous file with comments | « third_party/libusb/src/msvc/lsusb_sources ('k') | tools/checklicenses/checklicenses.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698