diff options
author | Guido van Rossum <guido@python.org> | 1992-03-23 18:20:04 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-03-23 18:20:04 +0000 |
commit | d510c786b8e99e03b3d9a8067c90a248a54b1256 (patch) | |
tree | 8e53e71b355baed5f2b4601e101d5a33f840df84 | |
parent | 9c8d70de457118c25ee2d30ac506cba65f6583ef (diff) | |
download | cpython-git-d510c786b8e99e03b3d9a8067c90a248a54b1256.tar.gz |
Added definitions of sys_trace and sys_profile
-rw-r--r-- | Include/sysmodule.h | 2 |
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; |