diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-22 16:36:41 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-22 16:36:41 +0000 |
commit | c68a00c0718023d4b3e2aa313bc06f7aa681515e (patch) | |
tree | 3ad38806ee1e5472f8133380ff0acaece38b2916 /plan9 | |
parent | 707afd922f953b906fb39ee9de6af3d448931188 (diff) | |
download | perl-c68a00c0718023d4b3e2aa313bc06f7aa681515e.tar.gz |
Get rid of the _() macro since (1) we require ANSI anyway
(2) Other software (GNU) seems to use it and we don't need it,
so let's give it up.
p4raw-id: //depot/perl@14374
Diffstat (limited to 'plan9')
-rw-r--r-- | plan9/config.plan9 | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/plan9/config.plan9 b/plan9/config.plan9 index 24b3075f71..a1ec401e82 100644 --- a/plan9/config.plan9 +++ b/plan9/config.plan9 @@ -1311,19 +1311,7 @@ * If defined, this macro indicates that the C compiler can handle * function prototypes. */ -/* _: - * 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 _((int argc, char *argv[])); - */ #define CAN_PROTOTYPE /**/ -#ifdef CAN_PROTOTYPE -#define _(args) args /* config-skip */ -#else -#define _(args) () /* config-skip */ -#endif /* RANDBITS: * This symbol contains the number of bits of random number the rand() |