Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reindent everything (possibly breaking all branches, but for the last time)
[simgrid.git] / src / xbt / dynar_private.h
index 85edb74..0a9bdfe 100644 (file)
 
 #include "xbt/synchro.h"
 typedef struct xbt_dynar_s {
-  unsigned long          size;
-  unsigned long          used;
-  unsigned long          elmsize;
-  void           *data;
+  unsigned long size;
+  unsigned long used;
+  unsigned long elmsize;
+  void *data;
   void_f_pvoid_t free_f;
-  xbt_mutex_t    mutex;
+  xbt_mutex_t mutex;
 } s_xbt_dynar_t;
 
 #endif /* DYNAR_PRIVATE_H */