diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-07-09 03:09:57 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-07-09 03:09:57 (GMT) |
commit | dbd9ba6a6c19c3d06f5684b3384a934f740038db (patch) | |
tree | 3a2728dbc98c86a0af47d7692cb8bdd2ee41afca /Modules/rgbimgmodule.c | |
parent | 4be47c0f76c349ee9c04b08ed122c8bd8190d2c5 (diff) | |
download | cpython-dbd9ba6a6c19c3d06f5684b3384a934f740038db.zip cpython-dbd9ba6a6c19c3d06f5684b3384a934f740038db.tar.gz cpython-dbd9ba6a6c19c3d06f5684b3384a934f740038db.tar.bz2 |
Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.
Diffstat (limited to 'Modules/rgbimgmodule.c')
-rw-r--r-- | Modules/rgbimgmodule.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Modules/rgbimgmodule.c b/Modules/rgbimgmodule.c index cc5c6d5..d0956cb 100644 --- a/Modules/rgbimgmodule.c +++ b/Modules/rgbimgmodule.c @@ -95,12 +95,12 @@ typedef struct { #define CHANOFFSET(z) (3-(z)) /* this is byte order dependent */ -static void expandrow Py_PROTO((unsigned char *, unsigned char *, int)); -static void setalpha Py_PROTO((unsigned char *, int)); -static void copybw Py_PROTO((Py_Int32 *, int)); -static void interleaverow Py_PROTO((unsigned char*, unsigned char*, int, int)); -static int compressrow Py_PROTO((unsigned char *, unsigned char *, int, int)); -static void lumrow Py_PROTO((unsigned char *, unsigned char *, int)); +static void expandrow(unsigned char *, unsigned char *, int); +static void setalpha(unsigned char *, int); +static void copybw(Py_Int32 *, int); +static void interleaverow(unsigned char*, unsigned char*, int, int); +static int compressrow(unsigned char *, unsigned char *, int, int); +static void lumrow(unsigned char *, unsigned char *, int); #ifdef ADD_TAGS #define TAGLEN (5) |