]> pd.if.org Git - pdclib/blobdiff - functions/_PDCLIB/print.c
Declaration of Xdigits now handled by header.
[pdclib] / functions / _PDCLIB / print.c
index b0c3341d8dfc6dbbc923293054da65e39bbb9053..a8c44f6a93d2679a0bcce035ebcb881e7279d999 100644 (file)
@@ -12,8 +12,6 @@
 #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.
 */
@@ -462,3 +460,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