switched many #ifdef's to #if defined()

This commit is contained in:
2014-11-14 02:44:20 +00:00
parent 3db3396955
commit 0b286a7e2a
68 changed files with 156 additions and 156 deletions

View File

@ -406,7 +406,7 @@ int qse_timegm (const qse_btime_t* bt, qse_ntime_t* nt)
tm.tm_yday = bt->yday;
tm.tm_isdst = bt->isdst;
#ifdef HAVE_TIMEGM
#if defined(HAVE_TIMEGM)
*nt = ((qse_ntime_t)timegm(&tm)*QSE_MSECS_PER_SEC) + bt->msec;
return 0;
#else