From e6c23672b20e338586e3687a4a938cee8524112d Mon Sep 17 00:00:00 2001
From: Yang Tse <yangsita@gmail.com>
Date: Sun, 29 Jun 2008 11:08:52 +0000
Subject: [PATCH] fix C style comment

---
 acinclude.m4      | 6 ++++--
 ares/acinclude.m4 | 6 ++++--
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/acinclude.m4 b/acinclude.m4
index b672367aae..39525043a5 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -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
diff --git a/ares/acinclude.m4 b/ares/acinclude.m4
index 1875c0d5a1..eb3c2454f2 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
-- 
GitLab