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