Changeset 229571 in webkit


Ignore:
Timestamp:
Mar 12, 2018 8:10:44 PM (6 years ago)
Author:
Yusuke Suzuki
Message:

Unreviewed, include time.h
https://bugs.webkit.org/show_bug.cgi?id=183312

Attempt to fix oss-fuzz build.

  • wtf/CurrentTime.cpp:
  • wtf/unix/CPUTimeUnix.cpp:
Location:
trunk/Source/WTF
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r229563 r229571  
     12018-03-12  Yusuke Suzuki  <utatane.tea@gmail.com>
     2
     3        Unreviewed, include time.h
     4        https://bugs.webkit.org/show_bug.cgi?id=183312
     5
     6        Attempt to fix oss-fuzz build.
     7
     8        * wtf/CurrentTime.cpp:
     9        * wtf/unix/CPUTimeUnix.cpp:
     10
    1112018-03-12  Yoav Weiss  <yoav@yoav.ws>
    212
  • trunk/Source/WTF/wtf/CurrentTime.cpp

    r229209 r229571  
    3535#include "MonotonicTime.h"
    3636#include "WallTime.h"
     37#include <time.h>
    3738
    3839#if OS(DARWIN)
     
    5051#include <math.h>
    5152#include <stdint.h>
    52 #include <time.h>
    5353#else
    5454#include <sys/time.h>
  • trunk/Source/WTF/wtf/unix/CPUTimeUnix.cpp

    r229289 r229571  
    2929#include <sys/resource.h>
    3030#include <sys/time.h>
     31#include <time.h>
    3132
    3233namespace WTF {
Note: See TracChangeset for help on using the changeset viewer.