micro-utils/config.h

20 lines
353 B
C
Raw Normal View History

2023-11-14 20:13:31 +00:00
#ifndef _CONFIG_H
#define _CONFIG_H
/* Depends: cat tee wc */
#define BUF_SIZE 4096
/* Random source for shred */
#define RAND_SOURCE "/dev/urandom"
2023-11-14 20:25:45 +00:00
/* Options: To disable, comment line */
2023-11-14 20:13:31 +00:00
/* Add escape-char support in echo */
#define ECHO_FANCY
2023-11-14 20:25:45 +00:00
/* getloadavg() unavailable in android os */
#ifndef __ANDROID__
#define UPTIME_LOADAVG
#endif
2023-11-14 20:13:31 +00:00
#endif