diff options
Diffstat (limited to 'gcc/c-lang.c')
-rw-r--r-- | gcc/c-lang.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/c-lang.c b/gcc/c-lang.c index ebba191..4a21666 100644 --- a/gcc/c-lang.c +++ b/gcc/c-lang.c @@ -31,10 +31,11 @@ Boston, MA 02111-1307, USA. */ is an alternative to a function in objc-actions.c. */ int -lang_decode_option (p) - char *p; +lang_decode_option (argc, argv) + int argc; + char **argv; { - return c_decode_option (p); + return c_decode_option (argc, argv); } void |