Release coccinelle-0.1.1
[bpt/coccinelle.git] / tests / typedef.res
CommitLineData
34e49164
C
1typedef struct bluecard_info_t {
2 struct pcmcia_device *p_dev;
3} foo;
4
5static void should_work(u_long arg)
6{
7 foo *info = (struct bluecard_info_t *)arg;
8 unsigned int iobase = info->p_dev->io.BasePort1;
9}
10
11static void does_work(u_long arg)
12{
13 struct bluecard_info_t *info = (struct bluecard_info_t *)arg;
14 unsigned int iobase = info->p_dev->io.BasePort1;
15}