diff options
author | Aaron Crane <arc@cpan.org> | 2017-10-12 14:00:03 +0200 |
---|---|---|
committer | Aaron Crane <arc@cpan.org> | 2017-10-21 16:51:36 +0100 |
commit | 1eb06a387814d96975ac806b89805b1e28e8080d (patch) | |
tree | f4b8fab42d7009f9196a7cd4233b9ec42158262e /plan9/config.plan9 | |
parent | 1c1d7d5ba0bc33e7bea0a9aeb2d420fc5a8128ab (diff) | |
download | perl-1eb06a387814d96975ac806b89805b1e28e8080d.tar.gz |
Assume we have C89 memcpy() and memmove()
We can therefore also avoid probing for and/or using BSD bcopy().
Diffstat (limited to 'plan9/config.plan9')
-rw-r--r-- | plan9/config.plan9 | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/plan9/config.plan9 b/plan9/config.plan9 index 81854e8304..8ae0aff630 100644 --- a/plan9/config.plan9 +++ b/plan9/config.plan9 @@ -98,12 +98,6 @@ */ #define HAS_BCMP /**/ -/* HAS_BCOPY: - * This symbol is defined if the bcopy() routine is available to - * copy blocks of memory. - */ -#define HAS_BCOPY /**/ - /* HAS_CHOWN: * This symbol, if defined, indicates that the chown routine is * available. @@ -319,20 +313,6 @@ */ #define HAS_MEMCMP /**/ -/* HAS_MEMCPY: - * This symbol, if defined, indicates that the memcpy routine is available - * to copy blocks of memory. - */ -#define HAS_MEMCPY /**/ - -/* HAS_MEMMOVE: - * This symbol, if defined, indicates that the memmove routine is available - * to copy potentially overlapping blocks of memory. This should be used - * only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your - * own version. - */ -#define HAS_MEMMOVE /**/ - /* HAS_MKDIR: * This symbol, if defined, indicates that the mkdir routine is available * to create directories. Otherwise you should fork off a new process to @@ -2135,14 +2115,6 @@ */ /*#define HAS_RECVMSG / **/ -/* HAS_SAFE_BCOPY: - * This symbol, if defined, indicates that the bcopy routine is available - * to copy potentially overlapping memory blocks. Normally, you should - * probably use memmove() or memcpy(). If neither is defined, roll your - * own version. - */ -/*#define HAS_SAFE_BCOPY / **/ - /* HAS_SANE_MEMCMP: * This symbol, if defined, indicates that the memcmp routine is available * and can be used to compare relative magnitudes of chars with their high |