Enable constructors/destructors.
authorPierre Habouzit <madcoder@debian.org>
Sun, 13 Jan 2008 13:46:12 +0000 (14:46 +0100)
committerPierre Habouzit <madcoder@debian.org>
Sun, 13 Jan 2008 13:46:12 +0000 (14:46 +0100)
lib-lib/lib-lib.h

index 72ba9aa..ca55f96 100644 (file)
 #define __must_check__  __attribute__((warn_unused_result))
 #define IGNORE(expr)  do { if (expr) (void)0; } while (0)
 
+#define __init  __attribute__((__used__,__constructor__))
+#define __fini  __attribute__((__used__,__destructor__))
+
 /* }}} */
 
 typedef union __attribute__((transparent_union)) anytype {