diff options
author | Guido van Rossum <guido@python.org> | 1996-12-09 18:52:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-12-09 18:52:11 (GMT) |
commit | ece35bc22fdf7c9a5b3b62dbdee7310e0b40055a (patch) | |
tree | 8e61855fa471b9328e069633daa92ae957106efc /Modules/cstubs | |
parent | 7ce52be62748582247754c2cbb88bb81e39b6b98 (diff) | |
download | cpython-ece35bc22fdf7c9a5b3b62dbdee7310e0b40055a.zip cpython-ece35bc22fdf7c9a5b3b62dbdee7310e0b40055a.tar.gz cpython-ece35bc22fdf7c9a5b3b62dbdee7310e0b40055a.tar.bz2 |
Changes to keep gcc -Wall happy.
Diffstat (limited to 'Modules/cstubs')
-rw-r--r-- | Modules/cstubs | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/Modules/cstubs b/Modules/cstubs index 5f62f14..b3c7037 100644 --- a/Modules/cstubs +++ b/Modules/cstubs @@ -70,6 +70,14 @@ Each definition must be contained on one line: #include <gl.h> #include <device.h> +#ifdef __sgi +extern int devport(); +extern int textwritemask(); +extern int pagewritemask(); +extern int gewrite(); +extern int gettp(); +#endif + #include "allobjects.h" #include "import.h" #include "modsupport.h" @@ -122,7 +130,7 @@ gl_varray(self, args) object *self; object *args; { - object *v, *w; + object *v, *w=NULL; int i, n, width; double vec[3]; object * (*getitem) FPROTO((object *, int)); @@ -638,7 +646,9 @@ gl_lrectwrite(self, args) short y2 ; string parray ; object *s; +#if 0 int pixcount; +#endif if (!getishortarg(args, 5, 0, &x1)) return NULL; if (!getishortarg(args, 5, 1, &y1)) @@ -715,7 +725,7 @@ gl_readdisplay(self, args) parray = (unsigned long *)getstringvalue(rv); size_ret = readdisplay(x1, y1, x2, y2, parray, hints); if ( size_ret != size ) { - printf("gl_readdisplay: got %d pixels, expected %d\n", + printf("gl_readdisplay: got %ld pixels, expected %ld\n", size_ret, size); err_setstr(RuntimeError, "readdisplay returned unexpected length"); return NULL; @@ -805,7 +815,7 @@ gl_unpackrect(self, args) long width, height, packfactor; char *s; object *unpacked, *packed; - int pixcount, packedcount, y; + int pixcount, packedcount; register unsigned char *p; register unsigned long *parray; if (!unpacktab_inited) { |