| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 PLATFORM_GLOBALS_H_ | 5 #ifndef PLATFORM_GLOBALS_H_ |
| 6 #define PLATFORM_GLOBALS_H_ | 6 #define PLATFORM_GLOBALS_H_ |
| 7 | 7 |
| 8 // __STDC_FORMAT_MACROS has to be defined before including <inttypes.h> to | 8 // __STDC_FORMAT_MACROS has to be defined before including <inttypes.h> to |
| 9 // enable platform independent printf format specifiers. | 9 // enable platform independent printf format specifiers. |
| 10 #ifndef __STDC_FORMAT_MACROS | 10 #ifndef __STDC_FORMAT_MACROS |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #if !defined(_WIN32) | 31 #if !defined(_WIN32) |
| 32 #include <arpa/inet.h> | 32 #include <arpa/inet.h> |
| 33 #include <inttypes.h> | 33 #include <inttypes.h> |
| 34 #include <stdint.h> | 34 #include <stdint.h> |
| 35 #include <unistd.h> | 35 #include <unistd.h> |
| 36 #endif | 36 #endif |
| 37 | 37 |
| 38 #include <float.h> | 38 #include <float.h> |
| 39 #include <limits.h> | 39 #include <limits.h> |
| 40 #include <math.h> | |
| 41 #include <stdarg.h> | 40 #include <stdarg.h> |
| 42 #include <stddef.h> | 41 #include <stddef.h> |
| 43 #include <stdio.h> | 42 #include <stdio.h> |
| 44 #include <stdlib.h> | 43 #include <stdlib.h> |
| 45 #include <string.h> | 44 #include <string.h> |
| 46 #include <sys/types.h> | 45 #include <sys/types.h> |
| 47 | 46 |
| 47 #include <cmath> |
| 48 |
| 48 #if defined(_WIN32) | 49 #if defined(_WIN32) |
| 49 #include "platform/c99_support_win.h" | 50 #include "platform/c99_support_win.h" |
| 50 #include "platform/inttypes_support_win.h" | 51 #include "platform/inttypes_support_win.h" |
| 51 #include "platform/floating_point_win.h" | 52 #include "platform/floating_point_win.h" |
| 52 #endif | 53 #endif |
| 53 | 54 |
| 54 #if !defined(_WIN32) | 55 #if !defined(_WIN32) |
| 55 #include "platform/floating_point.h" | 56 #include "platform/floating_point.h" |
| 56 #endif | 57 #endif |
| 57 | 58 |
| (...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 // N.B.: As the GCC manual states, "[s]ince non-static C++ methods | 502 // N.B.: As the GCC manual states, "[s]ince non-static C++ methods |
| 502 // have an implicit 'this' argument, the arguments of such methods | 503 // have an implicit 'this' argument, the arguments of such methods |
| 503 // should be counted from two, not one." | 504 // should be counted from two, not one." |
| 504 #define PRINTF_ATTRIBUTE(string_index, first_to_check) \ | 505 #define PRINTF_ATTRIBUTE(string_index, first_to_check) \ |
| 505 __attribute__((__format__(__printf__, string_index, first_to_check))) | 506 __attribute__((__format__(__printf__, string_index, first_to_check))) |
| 506 #else | 507 #else |
| 507 #define PRINTF_ATTRIBUTE(string_index, first_to_check) | 508 #define PRINTF_ATTRIBUTE(string_index, first_to_check) |
| 508 #endif | 509 #endif |
| 509 | 510 |
| 510 #endif // PLATFORM_GLOBALS_H_ | 511 #endif // PLATFORM_GLOBALS_H_ |
| OLD | NEW |