diff options
author | Guido van Rossum <guido@python.org> | 1995-02-18 15:02:02 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-02-18 15:02:02 (GMT) |
commit | 9fed183f2244413f31a44e1c7214495712ca4d00 (patch) | |
tree | 7a78e14149557e7f262bf1de1610511f2279689b | |
parent | c3d1c8e9fcb3c82f7fb7b79a1afe88a154550768 (diff) | |
download | cpython-9fed183f2244413f31a44e1c7214495712ca4d00.zip cpython-9fed183f2244413f31a44e1c7214495712ca4d00.tar.gz cpython-9fed183f2244413f31a44e1c7214495712ca4d00.tar.bz2 |
cfm 68k support
-rw-r--r-- | Mac/Modules/macosmodule.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mac/Modules/macosmodule.c b/Mac/Modules/macosmodule.c index ceb8a96..7dcc497 100644 --- a/Mac/Modules/macosmodule.c +++ b/Mac/Modules/macosmodule.c @@ -31,6 +31,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. static PyObject *MacOS_Error; /* Exception MacOS.Error */ +#ifdef __SC__ +#define bufferIsSmall -607 /*error returns from Post and Accept */ +#endif + /*----------------------------------------------------------------------*/ /* Miscellaneous File System Operations */ |