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

Side by Side Diff: include/c99/stdbool.h

Issue 32323009: mesa compile fixes for VS2013 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/mesa/
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/mesa/main/querymatrix.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 /************************************************************************** 1 /**************************************************************************
2 * 2 *
3 * Copyright 2007-2010 VMware, Inc. 3 * Copyright 2007-2010 VMware, Inc.
4 * All Rights Reserved. 4 * All Rights Reserved.
5 * 5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a 6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the 7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including 8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish, 9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to 10 * distribute, sub license, and/or sell copies of the Software, and to
(...skipping 17 matching lines...) Expand all
28 #ifndef _STDBOOL_H_ 28 #ifndef _STDBOOL_H_
29 #define _STDBOOL_H_ 29 #define _STDBOOL_H_
30 30
31 #ifndef __cplusplus 31 #ifndef __cplusplus
32 32
33 #define false 0 33 #define false 0
34 #define true 1 34 #define true 1
35 #define bool _Bool 35 #define bool _Bool
36 36
37 /* For compilers that don't have the builtin _Bool type. */ 37 /* For compilers that don't have the builtin _Bool type. */
38 #if defined(_MSC_VER) || (__STDC_VERSION__ < 199901L && __GNUC__ < 3) 38 #if (defined(_MSC_VER) && _MSC_VER < 1800) || \
39 (defined __GNUC__&& __STDC_VERSION__ < 199901L && __GNUC__ < 3)
39 typedef unsigned char _Bool; 40 typedef unsigned char _Bool;
40 #endif 41 #endif
41 42
42 #endif /* !__cplusplus */ 43 #endif /* !__cplusplus */
43 44
44 #define __bool_true_false_are_defined 1 45 #define __bool_true_false_are_defined 1
45 46
46 #endif /* !_STDBOOL_H_ */ 47 #endif /* !_STDBOOL_H_ */
OLDNEW
« no previous file with comments | « no previous file | src/mesa/main/querymatrix.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698