]> pd.if.org Git - pdclib/blobdiff - includes/tgmath.h
Re-import from Subversion.
[pdclib] / includes / tgmath.h
index 3ba73b0560093f92dd27f60ed8b2f5cfca8d37fe..df1d2b8d22d836cf3a9e3e7d4c859019d5f9579e 100644 (file)
@@ -1,18 +1,18 @@
-// ----------------------------------------------------------------------------
-// $Id$
-// ----------------------------------------------------------------------------
-// Public Domain C Library - http://pdclib.sourceforge.net
-// This code is Public Domain. Use, modify, and redistribute at will.
-// ----------------------------------------------------------------------------
-// Type-generic math
-// ----------------------------------------------------------------------------
+/* ----------------------------------------------------------------------------
+ * $Id$
+ * ----------------------------------------------------------------------------
+ * Public Domain C Library - http://pdclib.sourceforge.net
+ * This code is Public Domain. Use, modify, and redistribute at will.
+ * ----------------------------------------------------------------------------
+ * Type-generic math
+ * --------------------------------------------------------------------------*/
 
-#ifndef __TGMATH_H
-#define __TGMATH_H __TGMATH_H
+#ifndef _TGMATH_H
+#define _TGMATH_H _TGMATH_H
 
-// TODO: Generics support
+/* Generics, despite necessary for implementing tgmath.h, are not part of the
+ * C language proper; it is - to my knowledge - not possible to implement this
+ * header in any implementation-independent way.
+ */
 
-#include <complex.h>
-#include <math.h>
-
-#endif // __TGMATH_H
+#endif /* _TGMATH_H */