[Python-checkins] CVS: python/dist/src/Python ceval.c,2.284,2.285

Skip Montanaro montanaro@users.sourceforge.net
Mon, 15 Oct 2001 13:51:40 -0700


Update of /cvsroot/python/python/dist/src/Python
In directory usw-pr-cvs1:/tmp/cvs-serv2103

Modified Files:
	ceval.c 
Log Message:
make getarray static - it's only called from ceval.c and is not an
extern-able name.


Index: ceval.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/ceval.c,v
retrieving revision 2.284
retrieving revision 2.285
diff -C2 -d -r2.284 -r2.285
*** ceval.c	2001/10/13 06:11:28	2.284
--- ceval.c	2001/10/15 20:51:38	2.285
***************
*** 3645,3649 ****
  #ifdef DYNAMIC_EXECUTION_PROFILE
  
! PyObject *
  getarray(long a[256])
  {
--- 3645,3649 ----
  #ifdef DYNAMIC_EXECUTION_PROFILE
  
! static PyObject *
  getarray(long a[256])
  {