Changeset 12024 in webkit for trunk/JavaScriptCore/kjs/dtoa.cpp


Ignore:
Timestamp:
Jan 12, 2006, 7:25:58 AM (19 years ago)
Author:
darin
Message:

Reviewed, tweaked, and landed by Darin.

  • kjs/dtoa.cpp: Removed HAVE_CONFIG_H, changed config.h to use quotes instead of angle brackets. Moved dtoa.h include to the top. Changed system header includes to use angle brackets instead of quotes.
  • kjs/grammar.y: Removed HAVE_CONFIG_H, changed config.h to use quotes instead of angle brackets.
  • kjs/lexer.cpp: Removed HAVE_CONFIG_H, changed config.h to use quotes instead of angle brackets. Moved lexer.h include to the top.
  • kjs/ustring.cpp: Removed HAVE_CONFIG_H, changed config.h to use quotes instead of angle brackets. Moved ustring.h include to the top.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/dtoa.cpp

    r11962 r12024  
    170170 */
    171171
    172 #include <config.h>
     172#include "config.h"
     173#include "dtoa.h"
     174
    173175#ifdef WORDS_BIGENDIAN
    174176#define IEEE_MC68k
     
    177179#endif
    178180#define INFNAN_CHECK
    179 #include "dtoa.h"
    180181
    181182
     
    189190
    190191#ifdef DEBUG
    191 #include "stdio.h"
     192#include <stdio.h>
    192193#define Bug(x) {fprintf(stderr, "%s\n", x); exit(1);}
    193194#endif
    194195
    195 #include "stdlib.h"
    196 #include "string.h"
     196#include <stdlib.h>
     197#include <string.h>
    197198
    198199#ifdef USE_LOCALE
    199 #include "locale.h"
     200#include <locale.h>
    200201#endif
    201202
     
    227228#endif
    228229
    229 #include "errno.h"
     230#include <errno.h>
    230231
    231232#ifdef Bad_float_h
     
    259260
    260261#else /* ifndef Bad_float_h */
    261 #include "float.h"
     262#include <float.h>
    262263#endif /* Bad_float_h */
    263264
    264265#ifndef __MATH_H__
    265 #include "math.h"
     266#include <math.h>
    266267#endif
    267268
Note: See TracChangeset for help on using the changeset viewer.