Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Stupid C++ comments breaking AIX compilers
[simgrid.git] / src / gras / gras.c
index 0e98297..740c7a7 100644 (file)
@@ -71,7 +71,7 @@ void hexa_print(const char*name, unsigned char *data, int size) {
    int i;
    printf("%s: ", name);
    for (i=0;i<size;i++)  {
-      if (data[i]<32)// || data[i]>'9')
+      if (data[i]<32) /* || data[i]>'9') */
        printf("'\\%d'",data[i]);
       else
        printf("%c",data[i]);