mirror of
https://github.com/php/php-src.git
synced 2024-11-29 04:46:07 +08:00
9480de29db
Function provided by gd_security with bundled libgd Function provided by gd_compat with system libgd This fix failed test imageloadfont_invalid.phpt This test now also pass with system libgd
15 lines
303 B
C
15 lines
303 B
C
#ifndef GD_COMPAT_H
|
|
#define GD_COMPAT_H 1
|
|
|
|
#ifndef HAVE_GD_BUNDLED
|
|
/* from gd_compat.c */
|
|
const char * gdPngGetVersionString();
|
|
const char * gdJpegGetVersionString();
|
|
int gdJpegGetVersionInt();
|
|
#endif
|
|
|
|
/* from gd_compat.c of libgd/gd_security.c */
|
|
int overflow2(int a, int b);
|
|
|
|
#endif /* GD_COMPAT_H */
|