From: Guido van Rossum Date: Mon, 23 Mar 1992 18:20:04 +0000 (+0000) Subject: Added definitions of sys_trace and sys_profile X-Git-Tag: v0.9.8~474 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d510c786b8e99e03b3d9a8067c90a248a54b1256;p=thirdparty%2FPython%2Fcpython.git Added definitions of sys_trace and sys_profile --- diff --git a/Include/sysmodule.h b/Include/sysmodule.h index f79ecdba674b..29d1455130ce 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;