summaryrefslogtreecommitdiff
path: root/jccoefct.c
diff options
context:
space:
mode:
authorDRC <dcommander@users.sourceforge.net>2014-05-16 10:43:44 +0000
committerDRC <dcommander@users.sourceforge.net>2014-05-16 10:43:44 +0000
commitbc56b754e1a6a1db9ccadf64d6dda8a74140e1a3 (patch)
tree0b9fd4fd9792b427eadbe4b5b7170580b7e90e6c /jccoefct.c
parent52ded8768022ab7e9e7670ddea0ba89e2890b837 (diff)
Get rid of the HAVE_PROTOTYPES configuration option, as well as the related JMETHOD and JPP macros. libjpeg-turbo has never supported compilers that don't handle prototypes. Doing so requires ansi2knr, which isn't even supported in the IJG code anymore.
git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1308 632fc199-4ca6-4c93-a231-07263d6284db
Diffstat (limited to 'jccoefct.c')
-rw-r--r--jccoefct.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/jccoefct.c b/jccoefct.c
index ffc9b7e..faca94e 100644
--- a/jccoefct.c
+++ b/jccoefct.c
@@ -59,12 +59,12 @@ typedef my_coef_controller * my_coef_ptr;
/* Forward declarations */
METHODDEF(boolean) compress_data
- JPP((j_compress_ptr cinfo, JSAMPIMAGE input_buf));
+ (j_compress_ptr cinfo, JSAMPIMAGE input_buf);
#ifdef FULL_COEF_BUFFER_SUPPORTED
METHODDEF(boolean) compress_first_pass
- JPP((j_compress_ptr cinfo, JSAMPIMAGE input_buf));
+ (j_compress_ptr cinfo, JSAMPIMAGE input_buf);
METHODDEF(boolean) compress_output
- JPP((j_compress_ptr cinfo, JSAMPIMAGE input_buf));
+ (j_compress_ptr cinfo, JSAMPIMAGE input_buf);
#endif