Merged revisions 61849 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r61849 | martin.v.loewis | 2008-03-24 14:54:23 +0100 (Mo, 24 Mär 2008) | 2 lines

  Conditionalize sys/time.h inclusion.
........
This commit is contained in:
Martin v. Löwis 2008-03-24 14:05:07 +00:00
parent 823725e93c
commit 3bf3cc0401
1 changed files with 2 additions and 0 deletions

View File

@ -13,7 +13,9 @@
#include <signal.h>
#include <sys/stat.h>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#ifndef SIG_ERR
#define SIG_ERR ((PyOS_sighandler_t)(-1))