sparc: Do not force the object file format to ELF.
[libfirm] / ir / be / bemodule.h
index c1cb23c..6cb05ab 100644 (file)
@@ -22,7 +22,6 @@
  * @brief       Backend module interface.
  * @author      Matthias Braun
  * @date        11.12.2006
- * @version     $Id$
  */
 #ifndef FIRM_BE_BEMODULE_H
 #define FIRM_BE_BEMODULE_H
  * Currently you have to add modules manually in the list in bemodule.c.
  * However future extensions might allow them to be automatically discovered
  * when they are marked with BE_REGISTER_MODULE_CONSTRUCTOR
+ *
+ * Add this before your constructor as it will declare the function
  */
-#define BE_REGISTER_MODULE_CONSTRUCTOR(func)
+#define BE_REGISTER_MODULE_CONSTRUCTOR(func)         void func(void);
 
 /**
  * Mark a function as module destructor.
+ *
+ * Add this before your constructor as it will declare the function
  */
-#define BE_REGISTER_MODULE_DESTRUCTOR(func)
+#define BE_REGISTER_MODULE_DESTRUCTOR(func)          void func(void);
 
 /**
  * Call all module constructors
@@ -57,7 +60,7 @@ void be_quit_modules(void);
 typedef struct be_module_list_entry_t be_module_list_entry_t;
 
 void be_add_module_to_list(be_module_list_entry_t **list_head, const char *name,
-                           const void *module);
+                           void *module);
 
 void be_add_module_list_opt(lc_opt_entry_t *grp, const char *name,
                             const char *description,