[Python-checkins] CVS: python/dist/src/Doc/ext embedding.tex,1.1,1.2
Fred L. Drake
fdrake@users.sourceforge.net
Thu, 06 Sep 2001 09:17:26 -0700
Update of /cvsroot/python/python/dist/src/Doc/ext
In directory usw-pr-cvs1:/tmp/cvs-serv8985/ext
Modified Files:
embedding.tex
Log Message:
Use the standard argument convention for main(), and conform to the
Python/C style guide.
Index: embedding.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ext/embedding.tex,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** embedding.tex 2001/08/20 19:30:29 1.1
--- embedding.tex 2001/09/06 16:17:24 1.2
***************
*** 59,63 ****
#include <Python.h>
! int main()
{
Py_Initialize();
--- 59,64 ----
#include <Python.h>
! int
! main(int argc, char *argv[])
{
Py_Initialize();