Skip to content

Commit

Permalink
WIP: fix build breakage after merging upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
karelfv committed Aug 12, 2024
1 parent d7cd953 commit f35fcc9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions quickjs.c
Original file line number Diff line number Diff line change
Expand Up @@ -43389,10 +43389,7 @@ static const JSCFunctionListEntry js_math_obj[] = {
between UTC time and local time 'd' in minutes */
static int getTimezoneOffset(int64_t time)
{
#if defined(_WIN32)
/* XXX: TODO */
return 0;
#elif defined(__rtems__)
#if defined(__rtems__)
return 0;
#else
time_t ti;
Expand Down Expand Up @@ -43441,6 +43438,7 @@ static int getTimezoneOffset(int64_t time)
}
#endif
return res;
#endif
}

#if 0
Expand Down

0 comments on commit f35fcc9

Please sign in to comment.