Convert some files to RST syntax.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Sun, 13 Nov 2011 18:57:06 +0200
changeset 1085 b3d65819639b
parent 1084 244b155df50b
child 1086 66ecbe32a2af
Convert some files to RST syntax.
cpp.rst
--- a/cpp.rst	Sun Nov 13 02:43:23 2011 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,44 +0,0 @@
--*- mode: outline; coding: utf-8; -*-
-
-* How to see macros expansion?
-
-** GCC.
-
-  $ cpp <file>.c
-
-** MSVC.
-
-  $ cl /E <file>.c
-
-* Who to see predefined macros?
-
-See
-
-  http://predef.sourceforge.net/
-  http://en.wikipedia.org/wiki/C_preprocessor#Compiler-specific_predefined_macros
-
-** GNU C Compiler.
-
-  $ gcc -dM -E - < /dev/null
-
-** HP-UX ansi C compiler.
-
-  $ cc -v EMPTY.c
-
-** SCO OpenServer C compiler.
-
-  $ cc -## EMPTY.c
-
-** Sun Studio C/C++ compiler.
-
-  $ cc -## EMPTY.c
-
-** IBM AIX XL C/C++ compiler.
-
-  $ cc -qshowmacros -E EMPTY.c
-
-** Visual Studio compiler.
-
-  http://msdn.microsoft.com/en-us/library/b0084kay.aspx
-                Predefined Macros
-