]> pd.if.org Git - pdclib.old/blobdiff - includes/iso646.h
Modify various POSIX platform files so you can build on top of glibc for testing
[pdclib.old] / includes / iso646.h
index cc8be74abab17a9734943f9b3f21b0d8848595f6..80159fcb8a8e009bccab68508b59cd34b7442095 100644 (file)
@@ -1,20 +1,15 @@
-// ----------------------------------------------------------------------------
-// $Id$
-// ----------------------------------------------------------------------------
-// Public Domain C Library - http://pdclib.sourceforge.net
-// This code is Public Domain. Use, modify, and redistribute at will.
-// ----------------------------------------------------------------------------
-// Provides "readable" aliases for bit operators.
-// ----------------------------------------------------------------------------
+/* $Id$ */
 
-#ifndef __ISO646_H
-#define __ISO646_H __ISO646_H
+/* 7.9 Alternative spellings <iso646.h>
 
-// ----------------------------------------------------------------------------
-// DEFINES
+   This file is part of the Public Domain C Library (PDCLib).
+   Permission is granted to use, modify, and / or redistribute at will.
+*/
 
-#ifndef __cplusplus
+#ifndef _PDCLIB_ISO646_H
+#define _PDCLIB_ISO646_H _PDCLIB_ISO646_H
 
+#ifndef __cplusplus
 #define and &&
 #define and_eq &=
 #define bitand &
@@ -26,7 +21,7 @@
 #define or_eq |=
 #define xor ^
 #define xor_eq ^=
+#endif
 
-#endif // __cplusplus
+#endif
 
-#endif // __ISO646_H