X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=NetWare%2Fnw5.c;h=7f9eebee787ec7c55cba7cf58e7a363354884239;hb=20caf59dc5a2137cdf1de6dae458da063417a8d2;hp=aac80317d4451dc9005c8def10cdc72d9720ba6f;hpb=a02a5408b2f199007c4dcb74559cc79066307ada;p=p5sagit%2Fp5-mst-13.2.git diff --git a/NetWare/nw5.c b/NetWare/nw5.c index aac8031..7f9eebe 100644 --- a/NetWare/nw5.c +++ b/NetWare/nw5.c @@ -318,7 +318,7 @@ nw_crypt(const char *txt, const char *salt) return des_fcrypt(txt, salt, w32_crypt_buffer); #else Perl_croak(aTHX_ "The crypt() function is not implemented on NetWare\n"); - return Nullch; + return NULL; #endif } @@ -843,7 +843,7 @@ sys_intern_clear(pTHX) void sys_intern_dup(pTHX_ struct interp_intern *src, struct interp_intern *dst) { - + PERL_ARGS_ASSERT_SYS_INTERN_DUP; } #endif /* HAVE_INTERP_INTERN */ @@ -870,12 +870,6 @@ perl_clone_host(PerlInterpreter* proto_perl, UV flags) // Some more functions: -char * -nw_get_sitelib(const char *pl) -{ - return (NULL); -} - int execv(char *cmdname, char **argv) { @@ -1001,7 +995,7 @@ do_spawn2(char *cmd, int exectype) if (*s) *s++ = '\0'; } - *a = Nullch; + *a = NULL; if (argv[0]) { switch (exectype) { case EXECF_SPAWN: @@ -1031,7 +1025,7 @@ do_spawn2(char *cmd, int exectype) while (++i < nw_perlshell_items) argv[i] = nw_perlshell_vec[i]; argv[i++] = cmd; - argv[i] = Nullch; + argv[i] = NULL; switch (exectype) { case EXECF_SPAWN: status = nw_spawnvp(P_WAIT, argv[0], (char **)argv);