diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-04 18:57:23 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-04 18:57:23 +0000 |
commit | a3c02183684f1a45e8f2fbbe396e346379fcdc85 (patch) | |
tree | 652317989cad80a1268804d2f6c9c7cf18ff362b /uconfig.h | |
parent | 557e5ea98b1fb3bd2b100aa885bd0a929d558f76 (diff) | |
download | perl-a3c02183684f1a45e8f2fbbe396e346379fcdc85.tar.gz |
Add Encode::CN, Encode::KR, and Encode::TW to the list
of known extensions, where Encode::JP already is.
p4raw-id: //depot/perl@15014
Diffstat (limited to 'uconfig.h')
-rw-r--r-- | uconfig.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1386,7 +1386,7 @@ * a macro using sprintf("%g") is used. Arguments for the Gconvert * macro are: value, number of digits, whether trailing zeros should * be retained, and the output buffer. - * Possible values are: + * The usual values are: * d_Gconvert='gconvert((x),(n),(t),(b))' * d_Gconvert='gcvt((x),(n),(b))' * d_Gconvert='sprintf((b),"%.*g",(n),(x))' @@ -3417,16 +3417,18 @@ * If defined, this macro indicates that the C compiler can handle * function prototypes. */ -/* PERL_PROTO_: +/* _: * This macro is used to declare function parameters for folks who want * to make declarations with prototypes using a different style than * the above macros. Use double parentheses. For example: * - * int main PERL_PROTO_((int argc, char *argv[])); + * int main _((int argc, char *argv[])); */ /*#define CAN_PROTOTYPE / **/ #ifdef CAN_PROTOTYPE +#define _(args) args #else +#define _(args) () #endif /* SH_PATH: |