1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-29 11:02:01 +00:00

editfns.c: Need to include sys/time.h before resource.h on darwin.

This commit is contained in:
Steven Tamm 2004-11-07 05:57:08 +00:00
parent e710efbbb3
commit 31141c132b
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2004-11-06 Steven Tamm <steventamm@mac.com>
* editfns.c: Need to include sys/time.h before resource.h on darwin.
2004-11-06 Richard M. Stallman <rms@gnu.org>
* callint.c (Fcall_interactively): Avoid reusing EVENT for other data.

View File

@ -40,6 +40,9 @@ Boston, MA 02111-1307, USA. */
#endif
#if defined HAVE_SYS_RESOURCE_H
#ifdef MAC_OSX
#include <sys/time.h>
#endif
#include <sys/resource.h>
#endif