Changed include of <errno.h>

This commit is contained in:
Guido van Rossum 1990-12-20 23:05:40 +00:00
parent aec7855227
commit f22120ab74

View file

@ -31,10 +31,13 @@
err_setval() has to be changed. err_setval() has to be changed.
*/ */
#include "errno.h"
#include "allobjects.h" #include "allobjects.h"
#include <errno.h>
#ifndef errno
extern int errno;
#endif
#include "errcode.h" #include "errcode.h"
extern char *strerror PROTO((int)); extern char *strerror PROTO((int));