summaryrefslogtreecommitdiff
path: root/lib/muldc3.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/muldc3.c')
-rw-r--r--lib/muldc3.c27
1 files changed, 14 insertions, 13 deletions
diff --git a/lib/muldc3.c b/lib/muldc3.c
index b945e8e38..c048d84fa 100644
--- a/lib/muldc3.c
+++ b/lib/muldc3.c
@@ -1,21 +1,22 @@
-//===-- muldc3.c - Implement __muldc3 -------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This file implements __muldc3 for the compiler_rt library.
-//
-//===----------------------------------------------------------------------===//
+/* ===-- muldc3.c - Implement __muldc3 -------------------------------------===
+ *
+ * The LLVM Compiler Infrastructure
+ *
+ * This file is distributed under the University of Illinois Open Source
+ * License. See LICENSE.TXT for details.
+ *
+ * ===----------------------------------------------------------------------===
+ *
+ * This file implements __muldc3 for the compiler_rt library.
+ *
+ * ===----------------------------------------------------------------------===
+ */
#include "int_lib.h"
#include <math.h>
#include <complex.h>
-// Returns: the product of a + ib and c + id
+/* Returns: the product of a + ib and c + id */
double _Complex
__muldc3(double __a, double __b, double __c, double __d)