On altos, the primitive input function is ao_getchar, not getchar
[fw/pdclib] / internals / _PDCLIB_aux.h
index a4e7a621e3565ec5457deeea061b273be519491f..15c5db6f168febfe4ce1745e8919d0d5d604eded 100644 (file)
@@ -1,13 +1,16 @@
 /* $Id$ */
 
-/* Release $Name$ */
-
 /* Auxiliary PDCLib code <_PDCLIB_aux.h>
 
    This file is part of the Public Domain C Library (PDCLib).
    Permission is granted to use, modify, and / or redistribute at will.
 */
 
+/* -------------------------------------------------------------------------- */
+/* You should not have to edit anything in this file; if you DO have to, it   */
+/* would be considered a bug / missing feature: notify the author(s).         */
+/* -------------------------------------------------------------------------- */
+
 /* -------------------------------------------------------------------------- */
 /* Standard Version                                                           */
 /* -------------------------------------------------------------------------- */
 
 #define _PDCLIB_symbol2value( x ) #x
 #define _PDCLIB_symbol2string( x ) _PDCLIB_symbol2value( x )
-#define _PDCLIB_symbol2identity( x ) x
-
-/* -------------------------------------------------------------------------- */
-/* Internal data types                                                        */
-/* -------------------------------------------------------------------------- */
 
-/* Structure required by both atexit() and exit() for handling atexit functions */
-struct _PDCLIB_exitfunc_t
-{
-    struct _PDCLIB_exitfunc_t * next;
-    void (*func)( void );
-};