X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=includes%2Ftgmath.h;h=df1d2b8d22d836cf3a9e3e7d4c859019d5f9579e;hp=dc3125df065b57a5bdad9f1b7a91e1773e545319;hb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;hpb=70f1c6f7c9d515ef426da68973511f46de57005a diff --git a/includes/tgmath.h b/includes/tgmath.h index dc3125d..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, C++ handling +/* 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 */