1void f(char);
2static inline
3void * __memset_generic(char c)
4{
5  f(c);
6}
7int prepare_startup_playback_urb(
8     int b,
9     int c
10)
11{
12  char d;
13  if (b)
14    __memset_generic(c == ( 1) ? 0x80 : 0);
15  else
16    __memset_generic (c == ( 1) ? 0x80 : 0);
17}
18