summaryrefslogtreecommitdiff
path: root/hints/epix.sh
diff options
context:
space:
mode:
authorAaron Crane <arc@cpan.org>2017-10-12 11:02:27 +0200
committerAaron Crane <arc@cpan.org>2017-10-21 16:50:42 +0100
commit04322328fc4bc2863d0bc74339ed92d33b7eaba7 (patch)
tree1d346b8714d55af8fc3c9cd112dcc1effe526b5c /hints/epix.sh
parent11568d10a6b3495b7a54f171d4134d8798fd64d6 (diff)
downloadperl-04322328fc4bc2863d0bc74339ed92d33b7eaba7.tar.gz
Assume we have C89 memset()
This means we also never need to consider using BSD bzero().
Diffstat (limited to 'hints/epix.sh')
-rw-r--r--hints/epix.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/hints/epix.sh b/hints/epix.sh
index 14326b544f..1b87e99890 100644
--- a/hints/epix.sh
+++ b/hints/epix.sh
@@ -55,7 +55,7 @@ libswanted=`echo " $libswanted " | sed -e 's/ malloc / /'` # -e 's/ ucb / /'`
# it is needed for ODBM_File and NDBM_File extensions.
if [ -r /usr/ucblib/libucb.a ]; then # If using BSD-compat. library:
# Use the "native" counterparts, not the BSD emulation stuff:
- d_bcmp='undef'; d_bcopy='undef'; d_bzero='undef'; d_safebcpy='undef'
+ d_bcmp='undef'; d_bcopy='undef'; d_safebcpy='undef'
d_index='undef'; d_killpg='undef'; d_getprior='undef'; d_setprior='undef'
d_setlinebuf='undef'; d_setregid='undef'; d_setreuid='undef'
fi