mirror of
https://github.com/python/cpython.git
synced 2025-11-30 06:48:54 +00:00
Make print_delta static.
This commit is contained in:
parent
ff649b41e8
commit
1c95155bd1
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue