diff options
author | Guido van Rossum <guido@python.org> | 1996-12-09 18:49:42 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-12-09 18:49:42 (GMT) |
commit | 665f9198fed28ac94cbf69daf706ddec0203f980 (patch) | |
tree | eac84605b37c9914ec4b0c8f0c28f7ca21a34a50 /Modules/imgfile.c | |
parent | 3d65fa3488ec9c0e5791a41fe95e591cf9189408 (diff) | |
download | cpython-665f9198fed28ac94cbf69daf706ddec0203f980.zip cpython-665f9198fed28ac94cbf69daf706ddec0203f980.tar.gz cpython-665f9198fed28ac94cbf69daf706ddec0203f980.tar.bz2 |
Added a bunch of extern void decls, to keep gcc -Wall happy.
Diffstat (limited to 'Modules/imgfile.c')
-rw-r--r-- | Modules/imgfile.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Modules/imgfile.c b/Modules/imgfile.c index 76f123c..b529d03 100644 --- a/Modules/imgfile.c +++ b/Modules/imgfile.c @@ -48,6 +48,13 @@ PERFORMANCE OF THIS SOFTWARE. #include "/usr/people/4Dgifts/iristools/include/izoom.h" +/* Bunch of missing extern decls; keep gcc -Wall happy... */ +extern void i_seterror(); +extern void iclose(); +extern void filterzoom(); +extern void putrow(); +extern void getrow(); + static object * ImgfileError; /* Exception we raise for various trouble */ static int top_to_bottom; /* True if we want top-to-bottom images */ |