X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fstddef.h;h=1c138c7b91324e75b5657d14369a05ae9f3154ac;hb=70f1c6f7c9d515ef426da68973511f46de57005a;hp=d72ca71cbad171877eb9e12db368e790d1afa6b4;hpb=ad2651a3d8a2e2ae70a5ad882518ef346ab1bc7b;p=pdclib diff --git a/includes/stddef.h b/includes/stddef.h index d72ca71..1c138c7 100644 --- a/includes/stddef.h +++ b/includes/stddef.h @@ -4,26 +4,28 @@ // Public Domain C Library - http://pdclib.sourceforge.net // This code is Public Domain. Use, modify, and redistribute at will. // ---------------------------------------------------------------------------- -// TODO +// Common definitions // ---------------------------------------------------------------------------- #ifndef __STDDEF_H #define __STDDEF_H __STDDEF_H +// TODO: Documentation + // ---------------------------------------------------------------------------- // MACROS #define NULL 0 -#define offsetof( s-type, mbr ) // TODO +#define offsetof( s-type, mbr ) // TODO - personality? // ---------------------------------------------------------------------------- // TYPEDEFS -typedef ptrdiff_t; // TODO -typedef size_t; // TODO +typedef ptrdiff_t; // TODO - personality? +typedef size_t; // TODO - personality? #ifndef __cplusplus -typedef wchar_t; +typedef wchar_t; // TODO - personality? #endif // __cplusplus #endif // __STDDEF_H