Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
alpha portability again (damn size_t)
[simgrid.git] / README.coding
1 **
2 ** Random bits about coding standards and portability
3
4 MALLOC:
5  You must cast the result of malloc on AIX. 
6  It's even better to use gras_new when possible.
7
8 SIZE_T
9  #include <sys/types.h> in all files manipulating size_t
10  do cast it to unsigned long before printing (and use %lu)
11  
12