From: Hartmut Holzgraefe Date: Tue, 23 May 2000 22:28:07 +0000 (+0000) Subject: added a missing proto X-Git-Tag: PRE_EIGHT_BYTE_ALLOC_PATCH~291 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=94cca68983f4f5db218925721492abff262ef78e;p=php added a missing proto --- diff --git a/ext/gd/gd.c b/ext/gd/gd.c index 7972693bb7..63686cc9ca 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -1051,6 +1051,8 @@ PHP_FUNCTION(imagecolorsforindex) } /* }}} */ +/* {{{ proto int imagegammacorrect(int im, double inputgamma, double outputgamma) + Apply a gamma correction to a GD image */ PHP_FUNCTION(imagegammacorrect) { zval **IM, **inputgamma, **outputgamma; @@ -1076,6 +1078,7 @@ PHP_FUNCTION(imagegammacorrect) RETURN_TRUE; } +/* }}} */ /* {{{ proto int imagesetpixel(int im, int x, int y, int col) Set a single pixel */