Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
"new ruby host method"
[simgrid.git] / src / xbt / xbt_rl_time.c
index 35bd11d..72210a1 100644 (file)
@@ -7,19 +7,22 @@
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
-#include <math.h> /* floor */
+#include <math.h>               /* floor */
 
 #include "portable.h"
 
 #include "xbt/sysdep.h"
 #include "xbt/log.h"
 #include "gras/virtu.h"
 
 #include "portable.h"
 
 #include "xbt/sysdep.h"
 #include "xbt/log.h"
 #include "gras/virtu.h"
-#include "xbt/xbt_os_time.h" /* private */
+#include "xbt/xbt_os_time.h"    /* private */
 
 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(gras_virtu);
 
 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(gras_virtu);
-double xbt_time(void) {
-       return xbt_os_time();
+double xbt_time(void)
+{
+  return xbt_os_time();
 }
 }
-void xbt_sleep(double sec) {
-       xbt_os_sleep(sec);
+
+void xbt_sleep(double sec)
+{
+  xbt_os_sleep(sec);
 }
 }