Remove two unused argument warnings

(cherry picked from commit dc2c67e25f)
This commit is contained in:
Cary R 2011-10-03 13:52:06 -07:00 committed by Stephen Williams
parent 78d5b3f278
commit f874e81606
1 changed files with 1 additions and 1 deletions

View File

@ -700,7 +700,7 @@ static double cycles_diff(struct tms *a, struct tms *b)
// Provide dummies
struct tms { int x; };
inline static void times(struct tms *) { }
inline static double cycles_diff(struct tms *a, struct tms *b) { return 0; }
inline static double cycles_diff(struct tms *, struct tms *) { return 0; }
#endif // ! defined(HAVE_TIMES)
static void EOC_cleanup(void)