Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / README.coding
diff --git a/README.coding b/README.coding
deleted file mode 100644 (file)
index bcb4240..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-**
-** Random bits about coding standards and portability
-
-MALLOC:
- You must cast the result of malloc on AIX. 
- It's even better to use gras_new when possible.
-
-SIZE_T
- If possible, avoid size_t and use unsigned long instead.
-
- #include <sys/types.h> in all files manipulating size_t
- do cast it to unsigned long before printing (and use %lu)
-
-
-PRINTF pointer difference
- printf ("diff = %ld\n", (long) (pointer2 - pointer1));
-