summaryrefslogtreecommitdiff
path: root/Mac/Python
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-07-11 19:51:05 +0000
committerJack Jansen <jack.jansen@cwi.nl>2000-07-11 19:51:05 +0000
commita6be69fb3d9507d711382836d4b8f70c414e6f29 (patch)
tree9c874af534af3be65751ff55b1ea3169624f6a75 /Mac/Python
parent3a780a44bf86a23821371711e976b0f9e2885a53 (diff)
downloadcpython-a6be69fb3d9507d711382836d4b8f70c414e6f29.tar.gz
ANSIfication step 1: get rid of Py_PROTO and Py_FPROTO.
Diffstat (limited to 'Mac/Python')
-rw-r--r--Mac/Python/macglue.c6
-rw-r--r--Mac/Python/macmain.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c
index 1f5ce0e84f..1266b59c46 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
diff --git a/Mac/Python/macmain.c b/Mac/Python/macmain.c
index e773fd7008..8b2a1fd67c 100644
--- a/Mac/Python/macmain.c
+++ b/Mac/Python/macmain.c
@@ -62,8 +62,8 @@ static int orig_argc;
PyMac_PrefRecord options;
-static void Py_Main Py_PROTO((int, char **)); /* Forward */
-void PyMac_Exit Py_PROTO((int)); /* Forward */
+static void Py_Main(int, char **); /* Forward */
+void PyMac_Exit(int); /* Forward */
static void init_appearance()
{