aboutsummaryrefslogtreecommitdiff
blob: 22ada9481474bc410a87ea08441cbf8e46fd7128 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* some hax defines to help import busybox */
#ifndef _BUSYBOX_H
#define _BUSYBOX_H

#define CONFIG_MD5SUM
#define CONFIG_SHA1SUM

#define HASH_SHA1	1
#define HASH_MD5	2

#define bb_full_read(fd, buf, count) read(fd, buf, count)

#endif /* _BUSYBOX_H */