Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix HAVE_GRAPHVIZ handling
[simgrid.git] / src / xbt / fifo_private.h
index 47bdc4dc99d8619bdbcb82c028dfccf3374ce051..1edc64a94627adab4c2f454659e6939ad4c73d0a 100644 (file)
@@ -29,21 +29,4 @@ typedef struct xbt_fifo {
 #define xbt_fifo_getItemcontent(i) ((i)?(i)->content:NULL)
 #define xbt_fifo_Itemcontent(i) ((i)->content)
 #define xbt_fifo_setItemcontent(i,v) (i->content=v)
-
-
-/* static __inline__ xbt_fifo_item_t xbt_fifo_getFirstitem(xbt_fifo_t l) */
-/* { */
-/*   return l->head; */
-/* } */
-/* static __inline__ xbt_fifo_item_t xbt_fifo_getNextitem(xbt_fifo_item_t i)  */
-/* { */
-/*   if(i) return i->next; */
-/*   return NULL; */
-/* } */
-/* static __inline__ xbt_fifo_item_t xbt_fifo_getPrevitem(xbt_fifo_item_t i) */
-/* { */
-/*   if(i) return i->prev; */
-/*   return NULL; */
-/* } */
-
 #endif                          /* _XBT_FIFO_PRIVATE_H */