Make declarations of "main" in examples consistent.
authorRafe Kettler <rafe.kettler@gmail.com>
Sat, 18 Feb 2012 00:10:47 +0000 (00:10 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Sat, 18 Feb 2012 00:12:10 +0000 (00:12 +0000)
ChangeLog
NEWS
manual/examples/argp-ex1.c
manual/examples/argp-ex2.c
manual/examples/argp-ex3.c
manual/examples/argp-ex4.c
manual/examples/longopt.c
manual/examples/strncat.c
manual/examples/subopt.c

index 32cbb65..62f5136 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+2012-02-18  Rafe Kettler  <rafe.kettler@gmail.com>
+
+       [BZ #13058]
+       * manual/examples/argp-ex1.c (main): Format definition in GNU
+       style.
+       * manual/examples/argp-ex2.c (main): Likewise.
+       * manual/examples/argp-ex3.c (main): Likewise.
+       * manual/examples/argp-ex4.c (main): Likewise.
+       * manual/examples/longopt.c (main): Use new-style prototype
+       definition.
+       * manual/examples/strncat.c (main): Specify return type and use
+       (void) for arguments.
+       * manual/examples/subopt.c (main): Use char **argv argument.
+
 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
 
        [BZ #5077]
diff --git a/NEWS b/NEWS
index 3b97e5c..6b1c024 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -10,8 +10,9 @@ Version 2.16
 * The following bugs are resolved with this release:
 
   174, 350, 411, 3335, 4026, 4822, 5077, 5805, 6884, 6907, 9902, 10140,
-  10210, 11494, 12047, 13525, 13526, 13527, 13528, 13529, 13530, 13531,
-  13532, 13533, 13547, 13551, 13552, 13553, 13555, 13559, 13583, 13618
+  10210, 11494, 12047, 13058, 13525, 13526, 13527, 13528, 13529, 13530,
+  13531, 13532, 13533, 13547, 13551, 13552, 13553, 13555, 13559, 13583,
+  13618
 
 * ISO C11 support:
 
index 7bb5f22..931a826 100644 (file)
@@ -8,7 +8,8 @@
 #include <stdlib.h>
 #include <argp.h>
 
-int main (int argc, char **argv)
+int
+main (int argc, char **argv)
 {
   argp_parse (0, argc, argv, 0, 0, 0);
   exit (0);
index c49fbac..097ce76 100644 (file)
@@ -38,7 +38,8 @@ static char doc[] =
    option will print out @code{argp_program_version}.  */
 static struct argp argp = { 0, 0, 0, doc };
 
-int main (int argc, char **argv)
+int
+main (int argc, char **argv)
 {
   argp_parse (&argp, argc, argv, 0, 0, 0);
   exit (0);
index a8a48ea..d5896ee 100644 (file)
@@ -129,7 +129,8 @@ parse_opt (int key, char *arg, struct argp_state *state)
 /* Our argp parser.  */
 static struct argp argp = { options, parse_opt, args_doc, doc };
 
-int main (int argc, char **argv)
+int
+main (int argc, char **argv)
 {
   struct arguments arguments;
 
index 8628a23..2b61358 100644 (file)
@@ -131,7 +131,8 @@ parse_opt (int key, char *arg, struct argp_state *state)
 /* Our argp parser.  */
 static struct argp argp = { options, parse_opt, args_doc, doc };
 
-int main (int argc, char **argv)
+int
+main (int argc, char **argv)
 {
   int i, j;
   struct arguments arguments;
index 1661327..989e887 100644 (file)
@@ -6,9 +6,7 @@
 static int verbose_flag;
 
 int
-main (argc, argv)
-     int argc;
-     char **argv;
+main (int argc, char **argv)
 {
   int c;
 
index f865167..948d662 100644 (file)
@@ -5,7 +5,8 @@
 
 static char buffer[SIZE];
 
-main ()
+int
+main (void)
 {
   strncpy (buffer, "hello", SIZE);
   puts (buffer);
index 287fe8c..a87bee1 100644 (file)
@@ -27,7 +27,7 @@ const char *mount_opts[] =
 };
 
 int
-main (int argc, char *argv[])
+main (int argc, char **argv)
 {
   char *subopts, *value;
   int opt;