]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/abort.c
Added 'void' to empty parameter lists.
[pdclib] / functions / stdlib / abort.c
index 4a15bf898c84f90b9b3e3a83add230f9aa20fc65..b7f09777cd3923a82ace7f8a8135239efbb5dca4 100644 (file)
@@ -2,7 +2,7 @@
 
 /* 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.
@@ -13,7 +13,7 @@
 
 #ifndef REGTEST
 
-void abort()
+void abort( void )
 {
     raise( SIGABRT );
     exit( 1 );