]> AND Public Git Repository - simgrid.git/blobdiff - src/xbt/fifo.c
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
try to fix the windows build (+clang-format)
[simgrid.git] / src / xbt / fifo.c
index 8cd20e0a20a674d875e1bddf1fb88636a8fccff9..3f6714bc821eab6ec4ff0abc9157ff1573e81a75 100644 (file)
@@ -559,13 +559,13 @@ xbt_fifo_item_t xbt_fifo_getPrevItem(xbt_fifo_item_t i)
  * These are internal XBT functions called by xbt_preinit/postexit().
  * It can be used several times to recreate the mallocator, for example when you switch to MC mode
  */
-void xbt_fifo_preinit(void)
+void xbt_fifo_preinit()
 {
   item_mallocator = xbt_mallocator_new(65536, fifo_item_mallocator_new_f,
                                        fifo_item_mallocator_free_f, fifo_item_mallocator_reset_f);
 }
 
-void xbt_fifo_postexit(void)
+void xbt_fifo_postexit()
 {
   if (item_mallocator != NULL) {
     xbt_mallocator_free(item_mallocator);