skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

tryclockboot.c (154B)


      1 /* ISC license. */
      2 
      3 #include <time.h>
      4 
      5 int main (void)
      6 {
      7   struct timespec ts ;
      8   if (clock_gettime(CLOCK_BOOTTIME, &ts) < 0) return 111 ;
      9   return 0 ;
     10 }