Commit 00edab46 authored by hp's avatar hp
Browse files

* timevar.c: [HAVE_SYS_RESOURCE_H]: Include <sys/resource.h>.

	[NEED_DECLARATION_GETRUSAGE]: Declare getrusage.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34884 138bc75d-0d04-0410-961f-82ee72b054a4
parent b0fc3524
2000-07-06 Hans-Peter Nilsson <hp@axis.com>
* timevar.c: [HAVE_SYS_RESOURCE_H]: Include <sys/resource.h>.
[NEED_DECLARATION_GETRUSAGE]: Declare getrusage.
2000-07-05 Kazu Hirata <kazu@hxi.com>
 
* h8300-proto.h: Fix formatting.
......
......@@ -27,6 +27,13 @@
# include <sys/times.h>
#endif
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif
#ifdef NEED_DECLARATION_GETRUSAGE
extern int getrusage PARAMS ((int, struct rusage *));
#endif
#include "flags.h"
#include "timevar.h"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment