Changeset 12024 in webkit for trunk/JavaScriptCore/kjs/dtoa.cpp
- Timestamp:
- Jan 12, 2006, 7:25:58 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/dtoa.cpp
r11962 r12024 170 170 */ 171 171 172 #include <config.h> 172 #include "config.h" 173 #include "dtoa.h" 174 173 175 #ifdef WORDS_BIGENDIAN 174 176 #define IEEE_MC68k … … 177 179 #endif 178 180 #define INFNAN_CHECK 179 #include "dtoa.h"180 181 181 182 … … 189 190 190 191 #ifdef DEBUG 191 #include "stdio.h"192 #include <stdio.h> 192 193 #define Bug(x) {fprintf(stderr, "%s\n", x); exit(1);} 193 194 #endif 194 195 195 #include "stdlib.h"196 #include "string.h"196 #include <stdlib.h> 197 #include <string.h> 197 198 198 199 #ifdef USE_LOCALE 199 #include "locale.h"200 #include <locale.h> 200 201 #endif 201 202 … … 227 228 #endif 228 229 229 #include "errno.h"230 #include <errno.h> 230 231 231 232 #ifdef Bad_float_h … … 259 260 260 261 #else /* ifndef Bad_float_h */ 261 #include "float.h"262 #include <float.h> 262 263 #endif /* Bad_float_h */ 263 264 264 265 #ifndef __MATH_H__ 265 #include "math.h"266 #include <math.h> 266 267 #endif 267 268
Note:
See TracChangeset
for help on using the changeset viewer.