From: Rafał Długołęcki Date: Thu, 18 Jul 2013 07:41:47 +0000 (+0200) Subject: Changed comments style for better future documentation generation. X-Git-Tag: 3.1~31 X-Git-Url: https://git.dlugolecki.net.pl/?p=vlp.git;a=commitdiff_plain;h=2266ba2478ceb96296d1aa85f895917ffef331fc Changed comments style for better future documentation generation. --- diff --git a/src/int/genint.h b/src/int/genint.h index fc3fd93..a974c3f 100644 --- a/src/int/genint.h +++ b/src/int/genint.h @@ -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;