Commit 1c95155b authored by Martin v. Löwis's avatar Martin v. Löwis

Make print_delta static.

parent ff649b41
......@@ -822,7 +822,7 @@ test_with_docstring(PyObject *self)
#ifdef HAVE_GETTIMEOFDAY
/* 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_usec -= s->tv_usec;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment