Changeset 113313 in webkit


Ignore:
Timestamp:
Apr 5, 2012 4:56:14 AM (12 years ago)
Author:
Patrick Gansterer
Message:

[WinCE] Remove unnecessary function decleration
https://bugs.webkit.org/show_bug.cgi?id=83155

Reviewed by Kentaro Hara.

Source/JavaScriptCore:

  • runtime/JSDateMath.cpp:

Source/WTF:

  • wtf/DateMath.cpp:
  • wtf/Platform.h:
Location:
trunk/Source
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r113295 r113313  
     12012-04-05  Patrick Gansterer  <paroga@webkit.org>
     2
     3        [WinCE] Remove unnecessary function decleration
     4        https://bugs.webkit.org/show_bug.cgi?id=83155
     5
     6        Reviewed by Kentaro Hara.
     7
     8        * runtime/JSDateMath.cpp:
     9
    1102012-04-04  Patrick Gansterer  <paroga@webkit.org>
    211
  • trunk/Source/JavaScriptCore/runtime/JSDateMath.cpp

    r111618 r113313  
    9191#if HAVE(ERRNO_H)
    9292#include <errno.h>
    93 #endif
    94 
    95 #if OS(WINCE)
    96 extern "C" size_t strftime(char * const s, const size_t maxsize, const char * const format, const struct tm * const t);
    97 extern "C" struct tm * localtime(const time_t *timer);
    9893#endif
    9994
  • trunk/Source/WTF/ChangeLog

    r113295 r113313  
     12012-04-05  Patrick Gansterer  <paroga@webkit.org>
     2
     3        [WinCE] Remove unnecessary function decleration
     4        https://bugs.webkit.org/show_bug.cgi?id=83155
     5
     6        Reviewed by Kentaro Hara.
     7
     8        * wtf/DateMath.cpp:
     9        * wtf/Platform.h:
     10
    1112012-04-04  Patrick Gansterer  <paroga@webkit.org>
    212
  • trunk/Source/WTF/wtf/DateMath.cpp

    r111778 r113313  
    9191#endif
    9292
    93 #if OS(WINCE)
    94 extern "C" size_t strftime(char * const s, const size_t maxsize, const char * const format, const struct tm * const t);
    95 extern "C" struct tm * localtime(const time_t *timer);
    96 #endif
    97 
    9893#if HAVE(SYS_TIME_H)
    9994#include <sys/time.h>
  • trunk/Source/WTF/wtf/Platform.h

    r112401 r113313  
    499499
    500500#if OS(WINCE)
    501 #include <ce_time.h>
    502501#define WTF_USE_MERSENNE_TWISTER_19937 1
    503502#endif
Note: See TracChangeset for help on using the changeset viewer.