Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Indent include and src using this command:
[simgrid.git] / src / gras / Virtu / rl_emul.c
index d0409a5..5ed5a65 100644 (file)
 XBT_LOG_NEW_SUBCATEGORY(gras_virtu_emul, gras_virtu, "Emulation support");
 
 /*** CPU burning */
-void gras_cpu_burn(double flops) {
-  while (flops>0) {
-    flops-=2;
+void gras_cpu_burn(double flops)
+{
+  while (flops > 0) {
+    flops -= 2;
   }
 }