summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-03-23 18:20:04 +0000
committerGuido van Rossum <guido@python.org>1992-03-23 18:20:04 +0000
commitd510c786b8e99e03b3d9a8067c90a248a54b1256 (patch)
tree8e53e71b355baed5f2b4601e101d5a33f840df84
parent9c8d70de457118c25ee2d30ac506cba65f6583ef (diff)
downloadcpython-git-d510c786b8e99e03b3d9a8067c90a248a54b1256.tar.gz
Added definitions of sys_trace and sys_profile
-rw-r--r--Include/sysmodule.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/sysmodule.h b/Include/sysmodule.h
index f79ecdba67..29d1455130 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;