diff options
author | phantom <phantom@FreeBSD.org> | 2000-09-01 12:13:33 +0000 |
---|---|---|
committer | phantom <phantom@FreeBSD.org> | 2000-09-01 12:13:33 +0000 |
commit | 76465a7c588cc5b0463cef64a40084d5a9bcc6be (patch) | |
tree | b345f4a7faf1576e89d6f41b59f136a2e3994625 /lib/libc/nls/msgcat.h | |
parent | 2ae932bdcbb6f7909815a71d2cf99762cf98fb64 (diff) | |
download | FreeBSD-src-76465a7c588cc5b0463cef64a40084d5a9bcc6be.zip FreeBSD-src-76465a7c588cc5b0463cef64a40084d5a9bcc6be.tar.gz |
protect .h file contents correctly.
Diffstat (limited to 'lib/libc/nls/msgcat.h')
-rw-r--r-- | lib/libc/nls/msgcat.h | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/lib/libc/nls/msgcat.h b/lib/libc/nls/msgcat.h index 0a4c164..ee6799d3 100644 --- a/lib/libc/nls/msgcat.h +++ b/lib/libc/nls/msgcat.h @@ -1,8 +1,7 @@ /* $FreeBSD$ */ -/* -*-c++-*- */ - -#ifndef __msgcath +#ifndef _MSGCAT_H_ +#define _MSGCAT_H_ /*********************************************************** @@ -44,23 +43,12 @@ up-to-date. Many thanks. * On disk data structures */ -/* Edit History - -02/25/91 2 nazgul Byte order flags, upped the version number -11/03/90 1 hamilton Alphalpha->Alfalfa & OmegaMail->Poste -08/13/90 1 schulert move from ua to omu -*/ - /* For or'd constants */ #define MCMakeId(s,m) (unsigned long) ( ((unsigned short)s << (sizeof(short)*8)) \ | (unsigned short)m ) #define MCSetId(id) (unsigned int) ( id >> (sizeof(short) * 8) ) #define MCMsgId(id) (unsigned int) ( (id << (sizeof(short) * 8)) \ >> (sizeof(short) * 8) ) -#undef S -#undef UI -#undef UL - #define MCMagicLen 8 #define MCMagic "*nazgul*" #define MCLastMsg 0 @@ -164,7 +152,4 @@ typedef struct { #define MC68KByteOrder 0x01 #define MCn86ByteOrder 0x02 - - - -#endif +#endif /* !_MSGCAT_H_ */ |