blob: 91d30ff804dc1c5f11359b40c24564f89fae6fad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __CMD_STAT_H
#define __CMD_STAT_H
#include <stdlib.h>
#include <stdio.h>
#include "sds.h"
#include "util.h"
#include "debug.h"
void *cmd_stat(void *data);
#endif
|