summaryrefslogtreecommitdiff
path: root/ext/SDBM_File
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-12-09 16:43:21 +0100
committerNicholas Clark <nick@ccl4.org>2011-12-09 16:43:21 +0100
commitbce1a96b23c98bfb16c4770978518b5e69769b4f (patch)
tree91e22c1d638eb96b263b042fe1c64fce20d440be /ext/SDBM_File
parent7d0fb9b8e300e95212ca1a77b0d706eb5567788c (diff)
downloadperl-bce1a96b23c98bfb16c4770978518b5e69769b4f.tar.gz
Remove the obsolete code for NO_EMBED from sdbm.h
Support for NO_EMBED was removed by commit 22c35a8c2392967 in 1998. Minitrue attempted to eliminate all mention of it in 2003 with commit a0a44e237c19cc2b, but missed this code in sdbm.h
Diffstat (limited to 'ext/SDBM_File')
-rw-r--r--ext/SDBM_File/sdbm/sdbm.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/ext/SDBM_File/sdbm/sdbm.h b/ext/SDBM_File/sdbm/sdbm.h
index 53fc366801..2b8d0e9463 100644
--- a/ext/SDBM_File/sdbm/sdbm.h
+++ b/ext/SDBM_File/sdbm/sdbm.h
@@ -250,11 +250,7 @@ Free_t Perl_mfree proto((Malloc_t where));
#else
# ifndef memcmp
/* maybe we should have included the full embedding header... */
-# ifdef NO_EMBED
-# define memcmp my_memcmp
-# else
-# define memcmp Perl_my_memcmp
-# endif
+# define memcmp Perl_my_memcmp
#ifndef __cplusplus
extern int memcmp proto((char*, char*, int));
#endif