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

Side by Side Diff: vm/globals.h

Issue 9005037: Move include of limits.h to globals.h (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 12 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 | vm/isolate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_GLOBALS_H_ 5 #ifndef VM_GLOBALS_H_
6 #define VM_GLOBALS_H_ 6 #define VM_GLOBALS_H_
7 7
8 // __STDC_FORMAT_MACROS has to be defined to enable platform independent printf. 8 // __STDC_FORMAT_MACROS has to be defined to enable platform independent printf.
9 #ifndef __STDC_FORMAT_MACROS 9 #ifndef __STDC_FORMAT_MACROS
10 #define __STDC_FORMAT_MACROS 10 #define __STDC_FORMAT_MACROS
(...skipping 16 matching lines...) Expand all
27 #undef PARITY_ODD 27 #undef PARITY_ODD
28 #undef near 28 #undef near
29 #endif 29 #endif
30 30
31 #if !defined(_WIN32) 31 #if !defined(_WIN32)
32 #include <inttypes.h> 32 #include <inttypes.h>
33 #include <stdint.h> 33 #include <stdint.h>
34 #endif 34 #endif
35 35
36 #include <float.h> 36 #include <float.h>
37 #include <limits.h>
37 #include <math.h> 38 #include <math.h>
38 #include <openssl/bn.h> 39 #include <openssl/bn.h>
39 #include <stdarg.h> 40 #include <stdarg.h>
40 #include <stddef.h> 41 #include <stddef.h>
41 #include <stdio.h> 42 #include <stdio.h>
42 #include <stdlib.h> 43 #include <stdlib.h>
43 #include <string.h> 44 #include <string.h>
44 #include <sys/types.h> 45 #include <sys/types.h>
45 46
46 #if defined(_WIN32) 47 #if defined(_WIN32)
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 // contants are 16 byte aligned. 355 // contants are 16 byte aligned.
355 #if defined(TARGET_OS_WINDOWS) 356 #if defined(TARGET_OS_WINDOWS)
356 #define ALIGN16 __declspec(align(16)) 357 #define ALIGN16 __declspec(align(16))
357 #else 358 #else
358 #define ALIGN16 __attribute__((aligned(16))) 359 #define ALIGN16 __attribute__((aligned(16)))
359 #endif 360 #endif
360 361
361 } // namespace dart 362 } // namespace dart
362 363
363 #endif // VM_GLOBALS_H_ 364 #endif // VM_GLOBALS_H_
OLDNEW
« no previous file with comments | « no previous file | vm/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698