blob: 5e35317a5b5f0bd3db8f9d7601d61aea52d6bebc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __CMD_RUSAGE_H
#define __CMD_RUSAGE_H
#include <stdlib.h>
#include <stdio.h>
#include <sys/time.h>
#include <sys/resource.h>
#include "util.h"
void *cmd_rusage(void *data);
#endif
|