summaryrefslogtreecommitdiff
path: root/include/linked_list.h
blob: e591e943e8f9548f3266f3310ebdd9c5cbbe4ed2 (plain)
1
2
3
4
5
6
7
8
9
#ifndef _LINKED_LIST_H_
#define _LINKED_LIST_H_

struct linked_list {
	void *data;

};

#endif