]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/abs.c
Removed SVN keyword tags.
[pdclib] / functions / stdlib / abs.c
index 1bd965d08ad3f99578a572f436f930562614fe05..688b48bb22ad1bd25451c942379f1025e6ba570e 100644 (file)
@@ -1,7 +1,3 @@
-/* $Id$ */
-
-/* Release $Name$ */
-
 /* abs( int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -23,9 +19,8 @@ int abs( int j )
 #include <_PDCLIB_test.h>
 #include <limits.h>
 
-int main()
+int main( void )
 {
-    BEGIN_TESTS;
     TESTCASE( abs( 0 ) == 0 );
     TESTCASE( abs( INT_MAX ) == INT_MAX );
     TESTCASE( abs( INT_MIN + 1 ) == -( INT_MIN + 1 ) );