From: Augustin Degomme Date: Tue, 19 Feb 2013 15:54:26 +0000 (+0100) Subject: change name of the real executed main function to a windows specific one X-Git-Tag: v3_9_90~488 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/69a014268d6f2fe30237d083f006edb7d4d428fa change name of the real executed main function to a windows specific one --- diff --git a/include/smpi/smpi_main.h b/include/smpi/smpi_main.h index 604d8fa52e..08874c7c9e 100644 --- a/include/smpi/smpi_main.h +++ b/include/smpi/smpi_main.h @@ -1,6 +1,6 @@ -#define main smpi_simulated_main__(int argc, char **argv);\ +#define main smpi_windows_main__(int argc, char **argv);\ int main(int argc, char **argv){\ -smpi_main(&smpi_simulated_main__,argc,argv);\ +smpi_main(&smpi_windows_main__,argc,argv);\ return 0;\ }\ -int smpi_simulated_main__ +int smpi_windows_main__