about summary refs log tree commit diff
path: root/converter/ppm/pi1toppm.c
diff options
context:
space:
mode:
Diffstat (limited to 'converter/ppm/pi1toppm.c')
-rw-r--r--converter/ppm/pi1toppm.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/converter/ppm/pi1toppm.c b/converter/ppm/pi1toppm.c
index 9a07f535..57f65582 100644
--- a/converter/ppm/pi1toppm.c
+++ b/converter/ppm/pi1toppm.c
@@ -19,16 +19,14 @@
 static short screen[ROWS*COLS/4];          /* simulates the Atari's video RAM */
 
 int
-main( argc, argv )
-    int argc;
-    char* argv[];
-    {
+main(int argc, char* argv[]) {
+
     FILE* ifp;
     pixel pal[16];                      /* Degas palette */
     short i;
     short j;
     pixel* pixelrow;
-    register pixel* pP;
+    pixel* pP;
     int row, col;
 
 
@@ -73,7 +71,7 @@ main( argc, argv )
         {
         for ( col = 0, pP = pixelrow; col < COLS; ++col, ++pP )
             {
-            register int c, ind, b, plane;
+            int c, ind, b, plane;
 
             ind = 80 * row + ( ( col >> 4 ) << 2 );
             b = 0x8000 >> ( col & 0xf );
@@ -89,7 +87,7 @@ main( argc, argv )
     pm_close( stdout );
 
     exit( 0 );
-    }
+}