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
1 changed files with 5 additions and 2 deletions

View File

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