diff options
author | Vadim Konovalov <vkonovalov@lucent.com> | 2002-04-29 01:54:31 +0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-28 18:23:52 +0000 |
commit | 42165d2726b8a0b9ded4dc56d733154af8784b90 (patch) | |
tree | f8f97761be1750e2b255e51aa49d6eca14bdbc55 /pp_sort.c | |
parent | b5135157c621a585113d0c5008db555122aa49b3 (diff) | |
download | perl-42165d2726b8a0b9ded4dc56d733154af8784b90.tar.gz |
WinCE many fixes
Message-ID: <00bf01c1eedd$c0c62a00$d25cc3d9@vad>
p4raw-id: //depot/perl@16251
Diffstat (limited to 'pp_sort.c')
-rw-r--r-- | pp_sort.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -16,6 +16,11 @@ #define PERL_IN_PP_SORT_C #include "perl.h" +#if defined(UNDER_CE) +/* looks like 'small' is reserved word for WINCE (or somesuch)*/ +#define small xsmall +#endif + static I32 sortcv(pTHX_ SV *a, SV *b); static I32 sortcv_stacked(pTHX_ SV *a, SV *b); static I32 sortcv_xsub(pTHX_ SV *a, SV *b); |