summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-03-23 18:20:04 (GMT)
committerGuido van Rossum <guido@python.org>1992-03-23 18:20:04 (GMT)
commitd510c786b8e99e03b3d9a8067c90a248a54b1256 (patch)
tree8e53e71b355baed5f2b4601e101d5a33f840df84 /Include
parent9c8d70de457118c25ee2d30ac506cba65f6583ef (diff)
downloadcpython-d510c786b8e99e03b3d9a8067c90a248a54b1256.zip
cpython-d510c786b8e99e03b3d9a8067c90a248a54b1256.tar.gz
cpython-d510c786b8e99e03b3d9a8067c90a248a54b1256.tar.bz2
Added definitions of sys_trace and sys_profile
Diffstat (limited to 'Include')
-rw-r--r--Include/sysmodule.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/sysmodule.h b/Include/sysmodule.h
index f79ecdb..29d1455 100644
--- a/Include/sysmodule.h
+++ b/Include/sysmodule.h
@@ -28,3 +28,5 @@ object *sysget PROTO((char *));
int sysset PROTO((char *, object *));
FILE *sysgetfile PROTO((char *, FILE *));
void initsys PROTO((void));
+
+extern object *sys_trace, *sys_profile;