From: Alan Cox Date: Sat, 30 Sep 2017 18:18:47 +0000 (+0100) Subject: getopt: correct details of prototype (cc65 cares about the difference) X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=42f9733195e330426913bd42d5acaab119ca9f64;p=FUZIX.git getopt: correct details of prototype (cc65 cares about the difference) --- diff --git a/Library/include/getopt.h b/Library/include/getopt.h index 5c15e0d5..374acc54 100644 --- a/Library/include/getopt.h +++ b/Library/include/getopt.h @@ -8,6 +8,6 @@ extern char *optarg; extern int opterr; extern int optind; -extern int getopt(int __argc, char **__argv, char *__shortopts); +extern int getopt(int __argc, char *__argv[], char *__shortopts); #endif /* __GETOPT_H */