summaryrefslogtreecommitdiff
path: root/mathoms.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-11-07 21:31:16 +0000
committerNicholas Clark <nick@ccl4.org>2005-11-07 21:31:16 +0000
commitafd9910b0da24dd1fe1207d445456a8c0f2176c5 (patch)
treebf1afd50faf8057693db8f35281eb708e516b5bf /mathoms.c
parentffb8d87aed2af02cd51b9c989d04b1c37420bea3 (diff)
downloadperl-afd9910b0da24dd1fe1207d445456a8c0f2176c5.tar.gz
Merge pp_slt, pp_sgt and pp_sge into pp_sle. (The most commonly used
of the 4. Not that any are that popular.) p4raw-id: //depot/perl@26039
Diffstat (limited to 'mathoms.c')
-rw-r--r--mathoms.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/mathoms.c b/mathoms.c
index c0fc740c0a..113aac003f 100644
--- a/mathoms.c
+++ b/mathoms.c
@@ -1020,6 +1020,21 @@ PP(pp_lcfirst)
return pp_ucfirst();
}
+PP(pp_slt)
+{
+ return pp_sle();
+}
+
+PP(pp_sgt)
+{
+ return pp_sle();
+}
+
+PP(pp_sge)
+{
+ return pp_sle();
+}
+
U8 *
Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv)
{