From 5a8f82493315e69a8bcdc315926637c791c971ac Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 13 Apr 1992 15:54:59 +0000 Subject: [PATCH] Added declaration for mkvalue() --- Include/modsupport.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Include/modsupport.h b/Include/modsupport.h index 552c404dabb..28821d9ef78 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)