]> sigrok.org Git - libserialport.git/commit
windows: Fix a build error.
authorUwe Hermann <redacted>
Sat, 28 Dec 2019 22:39:15 +0000 (23:39 +0100)
committerUwe Hermann <redacted>
Sat, 28 Dec 2019 22:39:15 +0000 (23:39 +0100)
commitbd0fb6094f3b3cf7368bb17b09e30dd3408f9eae
tree4bd4ffdeed7fb5a89a48c6cd2f87d31e088a646c
parent7fb9a7b0a72bea83d05ef19e09e6b95b066b523d
windows: Fix a build error.

  serialport.c: In function 'get_time':
  serialport.c:64:6: warning: implicit declaration of function 'clock_gettime' [-Wimplicit-function-declaration]
    if (clock_gettime(CLOCK_MONOTONIC, &ts) == -1)
        ^
  serialport.c:64:20: error: 'CLOCK_MONOTONIC' undeclared (first use in this function)
    if (clock_gettime(CLOCK_MONOTONIC, &ts) == -1)
                      ^
  serialport.c:64:20: note: each undeclared identifier is reported only once for each function it appears in
  serialport.c:65:17: error: 'CLOCK_REALTIME' undeclared (first use in this function)
     clock_gettime(CLOCK_REALTIME, &ts);
                   ^
  serialport.c: At top level:
  serialport.c:60:13: warning: 'get_time' defined but not used [-Wunused-function]
   static void get_time(struct timeval *time)
               ^
serialport.c