From: sparky4 Date: Thu, 11 Jun 2015 19:35:58 +0000 (-0500) Subject: added printf("&main()=%Fp\n", *argv[0]); X-Git-Url: http://4ch.mooo.com/gitweb/?a=commitdiff_plain;h=e35531fd7bd3f049d8fe260c12c045005d487683;p=16.git added printf("&main()=%Fp\n", *argv[0]); modified: maptest.exe modified: maptest0.exe modified: src/maptest.c modified: src/maptest0.c --- diff --git a/maptest.exe b/maptest.exe index eea0ca43..8362ef52 100644 Binary files a/maptest.exe and b/maptest.exe differ diff --git a/maptest0.exe b/maptest0.exe index e895b438..1779add3 100644 Binary files a/maptest0.exe and b/maptest0.exe differ diff --git a/src/maptest.c b/src/maptest.c index 589d6d11..b9fe79de 100644 --- a/src/maptest.c +++ b/src/maptest.c @@ -20,6 +20,7 @@ main(int argc, char *argv[]) } fprintf(stdout, "\n"); #endif + fprintf(stdout, "&main()=%Fp\n", *argv[0]); fprintf(stdout, "&map==%Fp\n", &map); fprintf(stdout, "&map.tiles==%Fp\n", map.tiles); fprintf(stdout, "&map.width==%Fp\n", map.width); diff --git a/src/maptest0.c b/src/maptest0.c index 16e2159c..d3b39b4b 100644 --- a/src/maptest0.c +++ b/src/maptest0.c @@ -32,6 +32,7 @@ main(int argc, char *argv[]) } fprintf(stdout, "\n"); #endif + fprintf(stdout, "&main()=%Fp\n", *argv[0]); fprintf(stdout, "&map==%Fp\n", &map); fprintf(stdout, "&map.tiles==%Fp\n", map.tiles); fprintf(stdout, "&map.width==%Fp\n", map.width);