1 2 3 4 5 6 7 8 9
#ifndef _LINKED_LIST_H_ #define _LINKED_LIST_H_ struct linked_list { void *data; }; #endif