about summary refs log tree commit diff
path: root/converter/ppm/ppmtompeg/jrevdct.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-05-06 02:46:48 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-05-06 02:46:48 +0000
commitdb4a376e81c8035b654814e7246e502db0baaa25 (patch)
tree0902d27c62e43648685cebd2955acd709b889911 /converter/ppm/ppmtompeg/jrevdct.c
parent59f33411aa3ca7c9aebdb61840c1a545ebbb438d (diff)
downloadnetpbm-mirror-db4a376e81c8035b654814e7246e502db0baaa25.tar.gz
netpbm-mirror-db4a376e81c8035b654814e7246e502db0baaa25.tar.xz
netpbm-mirror-db4a376e81c8035b654814e7246e502db0baaa25.zip
cleanup - remove non-ANSI compiler provisions
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2481 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/ppm/ppmtompeg/jrevdct.c')
-rw-r--r--converter/ppm/ppmtompeg/jrevdct.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/converter/ppm/ppmtompeg/jrevdct.c b/converter/ppm/ppmtompeg/jrevdct.c
index c3379d7a..bf9196c4 100644
--- a/converter/ppm/ppmtompeg/jrevdct.c
+++ b/converter/ppm/ppmtompeg/jrevdct.c
@@ -28,7 +28,6 @@
 
 #include <memory.h>
 #include "all.h"
-#include "ansi.h"
 #include "dct.h"
 
 
@@ -162,9 +161,9 @@ ones here or successive P-frames will drift too much with Reference frame coding
 /*
   Switch on reverse_dct choices
 */
-void reference_rev_dct _ANSI_ARGS_((int16 *block));
-void mpeg_jrevdct_quick _ANSI_ARGS_((int16 *block));
-void init_idctref _ANSI_ARGS_((void));
+void reference_rev_dct (int16 *block);
+void mpeg_jrevdct_quick (int16 *block);
+void init_idctref (void);
 
 extern boolean pureDCT;