Removed needless include of errno.h.
authorTim Peters <tim.peters@gmail.com>
Sat, 1 Feb 2003 06:30:12 +0000 (06:30 +0000)
committerTim Peters <tim.peters@gmail.com>
Sat, 1 Feb 2003 06:30:12 +0000 (06:30 +0000)
Modules/cPickle.c

index 9cfcaea6e23f4889477b4c8a30b00fd61e0f22df..e726667b8d9ba23e499dda1c998125c0a0d0034a 100644 (file)
@@ -10,10 +10,6 @@ PyDoc_STRVAR(cPickle_module_documentation,
 #define Py_eval_input eval_input
 #endif /* Py_eval_input */
 
-#include <errno.h>
-
-
-
 #define DEL_LIST_SLICE(list, from, to) (PyList_SetSlice(list, from, to, NULL))
 
 #define WRITE_BUF_SIZE 256