X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=includes%2Ftgmath.h;h=df1d2b8d22d836cf3a9e3e7d4c859019d5f9579e;hp=3ba73b0560093f92dd27f60ed8b2f5cfca8d37fe;hb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;hpb=8c8750c2826684c2420571a8007b9606f72c9040 diff --git a/includes/tgmath.h b/includes/tgmath.h index 3ba73b0..df1d2b8 100644 --- a/includes/tgmath.h +++ b/includes/tgmath.h @@ -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 -#include - -#endif // __TGMATH_H +#endif /* _TGMATH_H */