]> pd.if.org Git - pdclib.old/blobdiff - functions/_PDCLIB/digits.c
Removed the $Name$ tags (not supported by SVN). Added $Id$ to Makefile / text files.
[pdclib.old] / functions / _PDCLIB / digits.c
index b58886b052a248f9c782eaca5dc38e92f188e780..3963f8b28b52729254ba4648058262075f65b728 100644 (file)
@@ -1,7 +1,5 @@
 /* $Id$ */
 
-/* Release $Name$ */
-
 /* _PDCLIB_digits
 
    This file is part of the Public Domain C Library (PDCLib).
 char _PDCLIB_digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
 
-int main()
+int main( void )
 {
-    BEGIN_TESTS;
     /* no tests for raw data */
-    return TEST_RESULTS;
+    return 0;
 }
 
 #endif