protect against multiple inclusions, commented text after #endif

This commit is contained in:
ceriel
1990-10-25 11:18:44 +00:00
parent da36c2b13f
commit 16e89fea1f
7 changed files with 30 additions and 4 deletions

View File

@@ -3,12 +3,15 @@
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* $Header$ */
#ifndef __OUT_H_INCLUDED
#define __OUT_H_INCLUDED
/*
* output format for ACK assemblers
*/
#ifndef ushort
#define ushort unsigned short
#endif ushort
#endif /* ushort */
struct outhead {
ushort oh_magic; /* magic number */
@@ -119,3 +122,5 @@ struct outname {
#define OFF_RELO(x) (OFF_EMIT(x) + (x).oh_nemit)
#define OFF_NAME(x) (OFF_RELO(x) + ((long)(x).oh_nrelo * SZ_RELO))
#define OFF_CHAR(x) (OFF_NAME(x) + ((long)(x).oh_nname * SZ_NAME))
#endif /* __OUT_H_INCLUDED */