about summary refs log tree commit diff
path: root/generator/pbmupc.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2006-10-14 16:25:29 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2006-10-14 16:25:29 +0000
commit545f6240cf70e7b26335c8a42e095fbc86888648 (patch)
tree5a4d608ecbb3c31011b879fd3784ab0e1638616b /generator/pbmupc.c
parent9eba0808f20753cd15887b057f0d0fb20e663c03 (diff)
downloadnetpbm-mirror-545f6240cf70e7b26335c8a42e095fbc86888648.tar.gz
netpbm-mirror-545f6240cf70e7b26335c8a42e095fbc86888648.tar.xz
netpbm-mirror-545f6240cf70e7b26335c8a42e095fbc86888648.zip
Eliminate K-R function declarations
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@84 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'generator/pbmupc.c')
-rw-r--r--generator/pbmupc.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/generator/pbmupc.c b/generator/pbmupc.c
index 5f694a00..6ef75654 100644
--- a/generator/pbmupc.c
+++ b/generator/pbmupc.c
@@ -433,17 +433,8 @@ putdigit( d, bits, row0, col0 )
 	    bits[row0 + row][col0 + col] = digits[d][row][col];
     }
 
-#if __STDC__
 static int
 addlines( int d, bit** bits, int row0, int col0, int height, bit color )
-#else /*__STDC__*/
-static int
-addlines( d, bits, row0, col0, height, color )
-    int d;
-    bit** bits;
-    int row0, col0, height;
-    bit color;
-#endif /*__STDC__*/
     {
     switch ( d )
 	{
@@ -524,16 +515,8 @@ addlines( d, bits, row0, col0, height, color )
     return col0;
     }
 
-#if __STDC__
 static int
 rect( bit** bits, int row0, int col0, int height, int width, bit color )
-#else /*__STDC__*/
-static int
-rect( bits, row0, col0, height, width, color )
-    bit** bits;
-    int row0, col0, height, width;
-    bit color;
-#endif /*__STDC__*/
     {
     int row, col;