aboutsummaryrefslogtreecommitdiff
path: root/coff.h
diff options
context:
space:
mode:
authorUrs Janssen <urs@hq.tin.org>2013-02-17 00:48:51 +0100
committerUrs Janssen <urs@hq.tin.org>2013-02-17 00:48:51 +0100
commit0bdbd49eac6ced7fbf6b5d2f5a13d7e9f3df54db (patch)
treeb3acd59ac51d9d8e426b6546fd6840e381c0982e /coff.h
parentd5e22108a0dc48899e44a158f91d5b3215eb7fe6 (diff)
downloadtinycc-0bdbd49eac6ced7fbf6b5d2f5a13d7e9f3df54db.tar.gz
tinycc-0bdbd49eac6ced7fbf6b5d2f5a13d7e9f3df54db.tar.bz2
add version number to manpage
avoid c++/c99 style comments in preprocessor directives avoid leadings whitespaces in preprocessor directives mention implemented variable length arrays in documentation fixed ambiguous option in texi2html call (Austin English)
Diffstat (limited to 'coff.h')
-rw-r--r--coff.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/coff.h b/coff.h
index 38960b4..ea871a7 100644
--- a/coff.h
+++ b/coff.h
@@ -37,8 +37,8 @@ struct filehdr {
#define F_BYTE_ORDER (F_LITTLE | F_BIG)
#define FILHDR struct filehdr
-//#define FILHSZ sizeof(FILHDR)
-#define FILHSZ 22 // above rounds to align on 4 bytes which causes problems
+/* #define FILHSZ sizeof(FILHDR) */
+#define FILHSZ 22 /* above rounds to align on 4 bytes which causes problems */
#define COFF_C67_MAGIC 0x00c2
@@ -150,7 +150,7 @@ struct scnhdr {
/*------------------------------------------------------------------------*/
/* Define constants for names of "special" sections */
/*------------------------------------------------------------------------*/
-//#define _TEXT ".text"
+/* #define _TEXT ".text" */
#define _DATA ".data"
#define _BSS ".bss"
#define _CINIT ".cinit"