diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-07-11 19:51:05 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-07-11 19:51:05 (GMT) |
commit | d88296d25a07ae5b6d53021a3954e90a3048601c (patch) | |
tree | b8fd8d2f94848384192e3b94c625777fa9d57967 /Mac/Python/macglue.c | |
parent | 4d4daed7cd9f82ae32ad8ffbbf3942abf1049b61 (diff) | |
download | cpython-d88296d25a07ae5b6d53021a3954e90a3048601c.zip cpython-d88296d25a07ae5b6d53021a3954e90a3048601c.tar.gz cpython-d88296d25a07ae5b6d53021a3954e90a3048601c.tar.bz2 |
ANSIfication step 1: get rid of Py_PROTO and Py_FPROTO.
Diffstat (limited to 'Mac/Python/macglue.c')
-rw-r--r-- | Mac/Python/macglue.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index 1f5ce0e..1266b59 100644 --- a/Mac/Python/macglue.c +++ b/Mac/Python/macglue.c @@ -104,13 +104,13 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /* Declared in macfsmodule.c: */ extern FSSpec *mfs_GetFSSpecFSSpec(); -extern PyObject *newmfssobject Py_PROTO((FSSpec *)); +extern PyObject *newmfssobject(FSSpec *); /* Interrupt code variables: */ static int interrupted; /* Set to true when cmd-. seen */ -static RETSIGTYPE intcatcher Py_PROTO((int)); +static RETSIGTYPE intcatcher(int); -static int PyMac_Yield Py_PROTO((void)); +static int PyMac_Yield(void); /* ** These are the real scheduling parameters that control what we check |