Kaydet (Commit) 59943ba7 authored tarafından Guido van Rossum's avatar Guido van Rossum

Added Py_PROTO macros for SunOS 4.x /bin/cc.

üst 462d6e64
...@@ -91,14 +91,14 @@ typedef struct _ts { ...@@ -91,14 +91,14 @@ typedef struct _ts {
} PyThreadState; } PyThreadState;
PyInterpreterState *PyInterpreterState_New(void); PyInterpreterState *PyInterpreterState_New Py_PROTO((void));
void PyInterpreterState_Delete(PyInterpreterState *); void PyInterpreterState_Delete Py_PROTO((PyInterpreterState *));
PyThreadState *PyThreadState_New(PyInterpreterState *); PyThreadState *PyThreadState_New Py_PROTO((PyInterpreterState *));
void PyThreadState_Delete(PyThreadState *); void PyThreadState_Delete Py_PROTO((PyThreadState *));
PyThreadState *PyThreadState_Get(void); PyThreadState *PyThreadState_Get Py_PROTO((void));
PyThreadState *PyThreadState_Swap(PyThreadState *); PyThreadState *PyThreadState_Swap Py_PROTO((PyThreadState *));
/* Some background. /* Some background.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment