From: Guido van Rossum Date: Fri, 11 Apr 1997 19:11:25 +0000 (+0000) Subject: (Jack:) Mac only: get GUSI errno.h values too. X-Git-Tag: v1.5a1~168 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fb421c82a953b3905b2b915dfaec7c679e73e191;p=python (Jack:) Mac only: get GUSI errno.h values too. --- diff --git a/Modules/errnomodule.c b/Modules/errnomodule.c index aef671c1a8..f23e27f36b 100644 --- a/Modules/errnomodule.c +++ b/Modules/errnomodule.c @@ -33,6 +33,11 @@ PERFORMANCE OF THIS SOFTWARE. #include "Python.h" +/* Mac with GUSI has more errors than those in errno.h */ +#ifdef USE_GUSI +#include +#endif + /* * Pull in the system error definitions */