1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00

Revert OBJECT_HEAD() part of tcc cleanups

The LIST_HEAD() change to OBJECT_HEAD() doesn't work when debuging is
enabled.

Fixes: d18809522e
This commit is contained in:
Jonas Fonseca 2006-01-22 06:18:40 +01:00 committed by Jonas Fonseca
parent ba3e4a611d
commit 7e6f398602

View File

@ -15,8 +15,7 @@ struct object {
}; };
#define OBJECT_HEAD(type) \ #define OBJECT_HEAD(type) \
type *next; \ LIST_HEAD(type); \
type *prev; \
struct object object struct object object
struct object_head { struct object_head {