From: Guido van Rossum Date: Mon, 13 Apr 1992 15:54:59 +0000 (+0000) Subject: Added declaration for mkvalue() X-Git-Tag: v0.9.8~364 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a8f82493315e69a8bcdc315926637c791c971ac;p=thirdparty%2FPython%2Fcpython.git Added declaration for mkvalue() --- diff --git a/Include/modsupport.h b/Include/modsupport.h index 552c404dabb0..28821d9ef78b 100644 --- a/Include/modsupport.h +++ b/Include/modsupport.h @@ -26,6 +26,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. extern object *initmodule PROTO((char *, struct methodlist *)); extern int getargs PROTO((object *, char *, ...)); +extern object *mkvalue PROTO((char *, ...)); #define getnoarg(v) getargs(v, "") #define getintarg(v, a) getargs(v, "i", a)