diff options
author | Yang Tse <yangsita@gmail.com> | 2008-06-29 11:08:52 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-06-29 11:08:52 +0000 |
commit | e6c23672b20e338586e3687a4a938cee8524112d (patch) | |
tree | 37106295a42d92272752f2b9e161476d2491acfe /ares | |
parent | 1058e5fdde288fdffaabc3431b228c9e61b4d189 (diff) | |
download | curl-e6c23672b20e338586e3687a4a938cee8524112d.tar.gz |
fix C style comment
Diffstat (limited to 'ares')
-rw-r--r-- | ares/acinclude.m4 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ares/acinclude.m4 b/ares/acinclude.m4 index 1875c0d5a..eb3c2454f 100644 --- a/ares/acinclude.m4 +++ b/ares/acinclude.m4 @@ -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 |