diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-09-14 22:57:23 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-09-14 22:57:23 +0000 |
commit | 4a83738abbec44c7097ec530f795374eb56f9a88 (patch) | |
tree | a038ce6943df9371a75929dbdfbf110cc9375769 /ext | |
parent | b6b716fe3a82a1de9cf94c1d43c790a87a9ece17 (diff) | |
download | perl-4a83738abbec44c7097ec530f795374eb56f9a88.tar.gz |
Fake return to pacify picky compilers.
p4raw-id: //depot/perl@7088
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Encode/Encode.xs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/Encode/Encode.xs b/ext/Encode/Encode.xs index c09a01aae0..68a7008aa0 100644 --- a/ext/Encode/Encode.xs +++ b/ext/Encode/Encode.xs @@ -4,6 +4,7 @@ #define UNIMPLEMENTED(x,y) y x (SV *sv, char *encoding) { \ Perl_croak("panic_unimplemented"); \ + return (y)0; /* fool picky compilers */ \ } UNIMPLEMENTED(_encoded_utf8_to_bytes, I32) UNIMPLEMENTED(_encoded_bytes_to_utf8, I32) |