From 09c093b500d5a002d6b420f5972e5469f115ea36 Mon Sep 17 00:00:00 2001 From: Rafe Kettler Date: Sat, 18 Feb 2012 00:10:47 +0000 Subject: Make declarations of "main" in examples consistent. --- manual/examples/argp-ex2.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'manual/examples/argp-ex2.c') diff --git a/manual/examples/argp-ex2.c b/manual/examples/argp-ex2.c index c49fbac..097ce76 100644 --- a/manual/examples/argp-ex2.c +++ b/manual/examples/argp-ex2.c @@ -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); -- cgit v1.1