~mmach/netext73/wasi-libc

« back to all changes in this revision

Viewing changes to libc-bottom-half/cloudlibc/src/libc/time/clock_gettime.c

  • Committer: mmach
  • Date: 2023-09-12 15:53:36 UTC
  • Revision ID: netbit73@gmail.com-20230912155336-s1r5z5xnszz99zzo
0.0~git20230113.4362b18

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
  *tp = timestamp_to_timespec(ts);
20
20
  return 0;
21
21
}
22
 
extern __typeof(__clock_gettime) clock_gettime __attribute__((weak, alias("__clock_gettime")));
 
22
weak_alias(__clock_gettime, clock_gettime);