mirror of
https://github.com/curl/curl.git
synced 2026-07-24 02:47:17 +03:00
fix C style comment
This commit is contained in:
parent
1058e5fdde
commit
e6c23672b2
2 changed files with 8 additions and 4 deletions
|
|
@ -2001,8 +2001,10 @@ AC_DEFUN([CURL_CHECK_FUNC_CLOCK_GETTIME_MONOTONIC], [
|
|||
#endif
|
||||
]],[[
|
||||
#if defined(_POSIX_MONOTONIC_CLOCK) && (_POSIX_MONOTONIC_CLOCK > 0)
|
||||
dnl The monotonic clock will not be used unless the feature test macro is
|
||||
dnl defined with a value greater than zero indicating _always_ supported.
|
||||
/*
|
||||
The monotonic clock will not be used unless the feature test macro is
|
||||
defined with a value greater than zero indicating _always_ supported.
|
||||
*/
|
||||
struct timespec ts;
|
||||
(void)clock_gettime(CLOCK_MONOTONIC, &ts);
|
||||
#else
|
||||
|
|
|
|||
|
|
@ -1468,8 +1468,10 @@ AC_DEFUN([CURL_CHECK_FUNC_CLOCK_GETTIME_MONOTONIC], [
|
|||
#endif
|
||||
]],[[
|
||||
#if defined(_POSIX_MONOTONIC_CLOCK) && (_POSIX_MONOTONIC_CLOCK > 0)
|
||||
dnl The monotonic clock will not be used unless the feature test macro is
|
||||
dnl defined with a value greater than zero indicating _always_ supported.
|
||||
/*
|
||||
The monotonic clock will not be used unless the feature test macro is
|
||||
defined with a value greater than zero indicating _always_ supported.
|
||||
*/
|
||||
struct timespec ts;
|
||||
(void)clock_gettime(CLOCK_MONOTONIC, &ts);
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue