Make print_delta static.

This commit is contained in:
Martin v. Löwis 2008-06-13 07:48:19 +00:00
parent ff649b41e8
commit 1c95155bd1
1 changed files with 1 additions and 1 deletions

View File

@ -822,7 +822,7 @@ test_with_docstring(PyObject *self)
#ifdef HAVE_GETTIMEOFDAY #ifdef HAVE_GETTIMEOFDAY
/* Profiling of integer performance */ /* Profiling of integer performance */
void print_delta(int test, struct timeval *s, struct timeval *e) static void print_delta(int test, struct timeval *s, struct timeval *e)
{ {
e->tv_sec -= s->tv_sec; e->tv_sec -= s->tv_sec;
e->tv_usec -= s->tv_usec; e->tv_usec -= s->tv_usec;