blob: 570180813c126c0311de69cd9dd89c50f7b971d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef GD_COMPAT_H
#define GD_COMPAT_H 1
#ifndef HAVE_GD_BUNDLED
/* from gd_compat.c */
const char * gdPngGetVersionString();
const char * gdJpegGetVersionString();
#endif
/* from gd_compat.c of libgd/gd_security.c */
int overflow2(int a, int b);
#endif /* GD_COMPAT_H */
|