[svn:parrot] r46005 - trunk/examples/embed
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Sun Apr 25 10:32:09 UTC 2010
Author: mikehh
Date: Sun Apr 25 10:32:09 2010
New Revision: 46005
URL: https://trac.parrot.org/parrot/changeset/46005
Log:
fix codetest failure - alter C function docs to reflect changes
Modified:
trunk/examples/embed/cotorra.c
Modified: trunk/examples/embed/cotorra.c
==============================================================================
--- trunk/examples/embed/cotorra.c Sun Apr 25 10:19:33 2010 (r46004)
+++ trunk/examples/embed/cotorra.c Sun Apr 25 10:32:09 2010 (r46005)
@@ -1,5 +1,5 @@
/*
-Copyright (C) 2009, Parrot Foundation.
+Copyright (C) 2009-2010, Parrot Foundation.
$Id$
=head1 NAME
@@ -144,7 +144,7 @@
/*
-=item C<int cotorra_main(Parrot_Interp interp, int argc, char **argv)>
+=item C<int cotorra_main(Parrot_Interp interp, int argc, const char **argv)>
Auxiliary function to minimize the size of main.
@@ -152,7 +152,7 @@
*/
-int cotorra_main(Parrot_Interp interp, int argc, const char * * argv)
+int cotorra_main(Parrot_Interp interp, int argc, const char **argv)
{
const char *source;
Parrot_PackFile pf;
@@ -243,7 +243,7 @@
/*
-=item C<int main(int argc, char **argv)>
+=item C<int main(int argc, const char **argv)>
Main function. Create the parrot interpreter and call cotorra_main.
More information about the parrot-commits
mailing list