Ignore:
Timestamp:
Mar 14, 2018, 10:28:10 PM (7 years ago)
Author:
bird
Message:

kmk: Merged in changes from GNU make 4.2.1 (2e55f5e4abdc0e38c1d64be703b446695e70b3b6 / https://git.savannah.gnu.org/git/make.git).

Location:
trunk/src/kmk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk

  • trunk/src/kmk/kmkbuiltin/mscfakes.h

    r3092 r3140  
    110110#endif
    111111
    112 struct timeval
     112struct msc_timeval
    113113{
    114114    __time64_t tv_sec;
    115115    long tv_usec;
    116116};
     117#define timeval msc_timeval
    117118
    118119struct iovec
     
    160161#endif
    161162int symlink(const char *pszDst, const char *pszLink);
    162 int utimes(const char *pszPath, const struct timeval *paTimes);
    163 int lutimes(const char *pszPath, const struct timeval *paTimes);
     163int utimes(const char *pszPath, const struct msc_timeval *paTimes);
     164int lutimes(const char *pszPath, const struct msc_timeval *paTimes);
    164165ssize_t writev(int fd, const struct iovec *vector, int count);
    165166
    166 int gettimeofday(struct timeval *pNow, void *pvIgnored);
     167int gettimeofday(struct msc_timeval *pNow, void *pvIgnored);
    167168struct tm *localtime_r(const __time64_t *pNow, struct tm *pResult);
    168169__time64_t timegm(struct tm *pNow);
Note: See TracChangeset for help on using the changeset viewer.