comparison src/Application/main.c @ 2:b2bced9907ea

Make variable type portable
author Merten Sach <msach@mailbox.tu-berlin.de>
date Wed, 22 Jun 2011 18:45:44 +0200
parents 3b0e43240104
children
comparison
equal deleted inserted replaced
0:5ef16d34b7ce 1:6bd525b964c0
25 25
26 resultMatrix = multiplyTheseMatrices( leftMatrix, rightMatrix ); 26 resultMatrix = multiplyTheseMatrices( leftMatrix, rightMatrix );
27 27
28 printf("\nresult matrix: \n"); 28 printf("\nresult matrix: \n");
29 29
30 // printMatrix( resultMatrix ); 30 printMatrix( resultMatrix );
31 31
32 // VPThread__print_stats(); 32 // VPThread__print_stats();
33 33
34 exit(0); //cleans up 34 exit(0); //cleans up
35 } 35 }