]> git.wh0rd.org - ICEs.git/blame - 353816/busybox.i.2
more
[ICEs.git] / 353816 / busybox.i.2
CommitLineData
bd3239d2
MF
1
2typedef long unsigned int size_t;
3extern __inline __attribute__ ((__always_inline__))
4 __attribute__ ((__gnu_inline__, __artificial__))
5void *
6 __attribute__ ((__nothrow__)) memmove(void *__dest, const void *__src,
7 size_t __len)
8{
9 return __builtin___memmove_chk(__dest, __src, __len,
10 __builtin_object_size(__dest, 0));
11}
12
13struct pollfd {
14 short int revents;
15};
16char bb_got_signal;
17char bb_common_bufsiz1[8192];
18int main(int argc __attribute__ ((__unused__)), char **argv)
19{
20 int timeout = 45 * 1000;
21 while (*argv) {
22 char *arg = *++argv;
23 size_t buf_len = 0;
24 size_t max_len = 50;
25 struct pollfd pfd;
26 memmove(bb_common_bufsiz1,
27 bb_common_bufsiz1 +
28 buf_len - max_len,
29 max_len);
30 }
31}