#ifndef _LINKED_LIST_H_ #define _LINKED_LIST_H_ struct linked_list { void *data; }; #endif