summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-06-29 11:08:52 +0000
committerYang Tse <yangsita@gmail.com>2008-06-29 11:08:52 +0000
commite4ac0f934775a751c5054d739cf99e1a30dfbd08 (patch)
treef5fde3742bafb58ac498b3b5f8d0b334df3c2e4f /acinclude.m4
parent08d3bc37aa51f1d898548f5677a89e872f02c169 (diff)
downloadc-ares-e4ac0f934775a751c5054d739cf99e1a30dfbd08.tar.gz
c-ares-e4ac0f934775a751c5054d739cf99e1a30dfbd08.tar.bz2
c-ares-e4ac0f934775a751c5054d739cf99e1a30dfbd08.zip
fix C style comment
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m46
1 files changed, 4 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 1875c0d..eb3c245 100644
--- a/acinclude.m4
+++ b/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