diff options
author | Mark Hammond <mhammond@skippinet.com.au> | 2002-08-12 13:06:35 (GMT) |
---|---|---|
committer | Mark Hammond <mhammond@skippinet.com.au> | 2002-08-12 13:06:35 (GMT) |
commit | 5d546674d18b3e96a473454167f1e07d313e89ca (patch) | |
tree | 45339210a48d07911e535e114c08de6426fbaa25 /Include | |
parent | 9c329de47e552bb0be7880350233448123eebb1f (diff) | |
download | cpython-5d546674d18b3e96a473454167f1e07d313e89ca.zip cpython-5d546674d18b3e96a473454167f1e07d313e89ca.tar.gz cpython-5d546674d18b3e96a473454167f1e07d313e89ca.tar.bz2 |
Correct PyAPI_FUNC to PyAPI_DATA - sorry Jack.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pythonrun.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/pythonrun.h b/Include/pythonrun.h index 1ee706f..98965b5 100644 --- a/Include/pythonrun.h +++ b/Include/pythonrun.h @@ -114,8 +114,8 @@ PyAPI_FUNC(void) PyOS_FiniInterrupts(void); /* Stuff with no proper home (yet) */ PyAPI_FUNC(char *) PyOS_Readline(char *); -PyAPI_FUNC(int) (*PyOS_InputHook)(void); -PyAPI_FUNC(char) *(*PyOS_ReadlineFunctionPointer)(char *); +PyAPI_DATA(int) (*PyOS_InputHook)(void); +PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(char *); /* Stack size, in "pointers" (so we get extra safety margins on 64-bit platforms). On a 32-bit platform, this translates |