Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
sed -i -e 's/\t/ /g' *.[ch] Please people, stop using tabs in your source
[simgrid.git] / doc / HelloWorld / HelloWorld.c
index 796b67a..ae6a7fb 100644 (file)
@@ -1,7 +1,8 @@
+#include <stdio.h>
 #include "xbt/log.h"
 XBT_LOG_NEW_DEFAULT_CATEGORY(HelloWorld,
                              "Messages specific for this Hello World example");
 void main()
 {
-       XBT_INFO("Hello World !!!");
+  XBT_INFO("Hello World !!!");
 }