]> pd.if.org Git - pdclib/blobdiff - functions/_PDCLIB/print.c
Intermediate work while migrating CVS -> SVN.
[pdclib] / functions / _PDCLIB / print.c
index 28cd4bc0ae1b0a2c65e9db96995fba196767c703..986ab43cab2edba91b7fcef8b2779fb9e5bd9790 100644 (file)
@@ -8,6 +8,11 @@
 
 #include <stdio.h>
 #include <stdint.h>
+#include <stdarg.h>
+#include <stdlib.h>
+#include <stddef.h>
+
+extern char * _PDCLIB_Xdigits;
 
 /* Using an integer's bits as flags for both the conversion flags and length
    modifiers.
@@ -457,3 +462,14 @@ const char * _PDCLIB_print( const char * spec, struct _PDCLIB_status_t * status
     }
     return ++spec;
 }
+
+#ifdef TEST
+#include <_PDCLIB_test.h>
+
+int main( void )
+{
+    TESTCASE( NO_TESTDRIVER );
+    return TEST_RESULTS;
+}
+
+#endif