summaryrefslogtreecommitdiff
path: root/Modules/_lsprof.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-03-22 09:28:35 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-03-22 09:28:35 +0000
commit227b5339edcdcc9ca6322a2217b75db11b69048f (patch)
tree8829d0c1b2ac9474b386499ca0fda37700f72bd8 /Modules/_lsprof.c
parent914a81841f881122f95eb5a9330a3ef96de174cd (diff)
downloadcpython-git-227b5339edcdcc9ca6322a2217b75db11b69048f.tar.gz
Finish getting rid of statichere/staticforward
Diffstat (limited to 'Modules/_lsprof.c')
-rw-r--r--Modules/_lsprof.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_lsprof.c b/Modules/_lsprof.c
index dddab8ea1a..17c71e9ec5 100644
--- a/Modules/_lsprof.c
+++ b/Modules/_lsprof.c
@@ -117,7 +117,7 @@ typedef struct {
#define POF_BUILTINS 0x004
#define POF_NOMEMORY 0x100
-staticforward PyTypeObject PyProfiler_Type;
+static PyTypeObject PyProfiler_Type;
#define PyProfiler_Check(op) PyObject_TypeCheck(op, &PyProfiler_Type)
#define PyProfiler_CheckExact(op) ((op)->ob_type == &PyProfiler_Type)
@@ -798,7 +798,7 @@ Profiler(custom_timer=None, time_unit=None, subcalls=True, builtins=True)\n\
is, in seconds).\n\
");
-statichere PyTypeObject PyProfiler_Type = {
+static PyTypeObject PyProfiler_Type = {
PyObject_HEAD_INIT(NULL)
0, /* ob_size */
"_lsprof.Profiler", /* tp_name */