Finalize the implementation of the playable shots list displaying
[Project_algorithmic_C.git] / lib / list.h
index 98b5b259de0c4db8f0acb96446ccd5c9a0bff5e1..b9d8cba65aba6127f8af6f3b80427c91adbcf1bb 100644 (file)
@@ -21,6 +21,8 @@ struct list_head {
        struct list_head *next, *prev;
 };
 
+#define typeof __typeof__
+
 #define LIST_HEAD_INIT(name) { &(name), &(name) }
 
 #define LIST_HEAD(name) \