Changed comments style for better future documentation generation.
authorRafał Długołęcki <kontakt@dlugolecki.net.pl>
Thu, 18 Jul 2013 07:41:47 +0000 (09:41 +0200)
committerRafał Długołęcki <kontakt@dlugolecki.net.pl>
Thu, 18 Jul 2013 07:41:47 +0000 (09:41 +0200)
src/int/genint.h

index fc3fd93114c30ca897f0e3d0669264170dd66340..a974c3f2c1955d51f7c1283d7de1578e584bfbc3 100644 (file)
@@ -38,10 +38,22 @@ or             Andrzej Salwicki
 /* Variables : */
 
 extern protdescr *prototype[];
-extern word ipradr;         /* address of primitive type descriptions */
-extern word temporary;          /* address of global temporary variables */
-extern word strings;            /* base for string constants */
-extern word lastprot;           /* the last used prototype number */
-extern word freem;           /* first free cell in M */
-extern word currfile;     /* current file virtual address */
+
+/** address of primitive type descriptions */
+extern word ipradr;
+
+/** address of global temporary variables  */
+extern word temporary;
+
+/** base for string constants */
+extern word strings;
+
+/** the last used prototype number */
+extern word lastprot;
+
+/** first free cell in M */
+extern word freem;
+
+/** current file virtual address */
+extern word currfile;