With Win32 now building DynaLoader in ext, it is now built with
Steve Hay [Mon, 28 Sep 2009 14:12:50 +0000 (15:12 +0100)]
-noprototypes (as was always the case on *nix), so no need to explicitly
disable prototype checking in DynaLoader.t any more, i.e. we can revert
a2c4b2d6db383103b96e4733616b17d0a3bb0bd9

ext/DynaLoader/t/DynaLoader.t

index e9d55e7..fa07272 100644 (file)
@@ -80,7 +80,7 @@ if ($Config{usedl}) {
 # .. for dl_load_file()
 SKIP: {
     skip "no dl_load_file with dl_none.xs", 2 unless $Config{usedl};
-    eval { &DynaLoader::dl_load_file() };
+    eval { DynaLoader::dl_load_file() };
     like( $@, q{/^Usage: DynaLoader::dl_load_file\(filename, flags=0\)/},
             "calling DynaLoader::dl_load_file() with no argument" );