summaryrefslogtreecommitdiff
path: root/drivers/staging/nmf-cm/ee/api/list.idt
blob: a53a39734d85402bab4990f0eabdcf2adbba40dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (C) ST-Ericsson SA 2010. All rights reserved.
 * This code is ST-Ericsson proprietary and confidential.
 * Any use of the code for whatever purpose is subject to
 * specific written permission of ST-Ericsson SA.
 */
 
#ifndef LIST_IDT
#define LIST_IDT

/* linking elem */
struct _t_list_link {
    struct _t_list_link *pNext;
};
typedef struct _t_list_link t_list_link;

#endif