diff options
author | Karl Williamson <khw@cpan.org> | 2019-05-29 14:49:57 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-05-30 18:13:29 -0600 |
commit | fb49ac4495a8cff9430c5c4313ae8f9d6665650e (patch) | |
tree | 1361f706cbd446e52eac1a74adeed8a893014e45 /perl.h | |
parent | e4aeb12f0611f53a3b2e82d7d97bc9ab2a094b55 (diff) | |
download | perl-fb49ac4495a8cff9430c5c4313ae8f9d6665650e.tar.gz |
Let embed.fnc define the my_str_foo() fcns
We don't always define a Perl_ form for these, expecting all calls to be
made through the macro, which will use the native form on the systems
that have one.
Removing these extra #defines helps future commits
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -1675,8 +1675,6 @@ EXTERN_C char *crypt(const char *, const char *); #ifdef HAS_STRLCAT # define my_strlcat strlcat -#else -# define my_strlcat Perl_my_strlcat #endif #if defined(PERL_CORE) || defined(PERL_EXT) @@ -1689,14 +1687,10 @@ EXTERN_C char *crypt(const char *, const char *); #ifdef HAS_STRLCPY # define my_strlcpy strlcpy -#else -# define my_strlcpy Perl_my_strlcpy #endif #ifdef HAS_STRNLEN # define my_strnlen strnlen -#else -# define my_strnlen Perl_my_strnlen #endif /* |