diff options
author | Guido van Rossum <guido@python.org> | 1993-07-05 10:31:29 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-07-05 10:31:29 (GMT) |
commit | f1dc56632881fe4e5beed047580bf927679f3669 (patch) | |
tree | f669dcac15ec9cb2801b881c3a7b1a579e7c994e /Modules/mathmodule.c | |
parent | 9e90a672b44e2acfd5c6dabfb9435bb4bb46c845 (diff) | |
download | cpython-f1dc56632881fe4e5beed047580bf927679f3669.zip cpython-f1dc56632881fe4e5beed047580bf927679f3669.tar.gz cpython-f1dc56632881fe4e5beed047580bf927679f3669.tar.bz2 |
* Makefile: added all: and default: targets.
* many files: made some functions static; removed "extern int errno;".
* frozenmain.c: fixed bugs introduced on 24 June...
* flmodule.c: remove 1.5 bw compat hacks, add new functions in 2.2a
(and some old functions that were omitted).
* timemodule.c: added MSDOS floatsleep version .
* pgenmain.c: changed exit() to goaway() and added defn of goaway().
* intrcheck.c: add hack (to UNIX only) so interrupting 3 times
will exit from a hanging program. The second interrupt prints
a message explaining this to the user.
Diffstat (limited to 'Modules/mathmodule.c')
-rw-r--r-- | Modules/mathmodule.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index 8b1bccf..67e3cf7 100644 --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -27,9 +27,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "allobjects.h" #include <errno.h> -#ifndef errno -extern int errno; -#endif #include "modsupport.h" |