/* Release $Name$ */
-/* abort()
+/* abort( void )
This file is part of the Public Domain C Library (PDCLib).
Permission is granted to use, modify, and / or redistribute at will.
#ifndef REGTEST
-void abort()
+void abort( void )
{
raise( SIGABRT );
exit( 1 );
/* Release $Name$ */
-/* rand()
+/* rand( void )
This file is part of the Public Domain C Library (PDCLib).
Permission is granted to use, modify, and / or redistribute at will.
#ifndef REGTEST
-int rand()
+int rand( void )
{
_PDCLIB_seed = _PDCLIB_seed * 1103515245 + 12345;
return (unsigned int) ( _PDCLIB_seed / 65536 ) % 32768;