File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 4141
4242#if defined(TECO_LONG )
4343
44- typedef long INT ;
44+ typedef long INT ; ///< Size of m and n arguments
4545
4646#else
4747
48- typedef int INT ;
48+ typedef int INT ; ///< Size of m and n arguments
4949
5050#endif
5151
Original file line number Diff line number Diff line change 3939
4040#if defined(TECO_LONG )
4141
42- #define FORMAT_DEC "%ld"
43- #define FORMAT_HEX "%lx"
44- #define FORMAT_OCT "%lo"
42+ #define FORMAT_DEC "%ld" ///< Decimal format
43+ #define FORMAT_HEX "%lx" ///< Hexadecimal format
44+ #define FORMAT_OCT "%lo" ///< Octal format
4545
4646#else
4747
48- #define FORMAT_DEC "%d"
49- #define FORMAT_HEX "%x"
50- #define FORMAT_OCT "%o"
48+ #define FORMAT_DEC "%d" ///< Decimal format
49+ #define FORMAT_HEX "%x" ///< Hexadecimal format
50+ #define FORMAT_OCT "%o" ///< Octal format
5151
5252#endif
5353
You can’t perform that action at this time.
0 commit comments