[Kaleidoscope] Clang-format the Kaleidoscope tutorials.
[oota-llvm.git] / docs / tutorial / LangImpl4.rst
index 8abb7456949a87e3dad99f4407ea0e1a8b5e9125..497a4c56a38cf3b9f96c5c90f5b1f3dc53563e70 100644 (file)
@@ -400,8 +400,7 @@ example, if we add:
 .. code-block:: c++
 
     /// putchard - putchar that takes a double and returns 0.
-    extern "C"
-    double putchard(double X) {
+    extern "C" double putchard(double X) {
       putchar((char)X);
       return 0;
     }