diff options
author | Guido van Rossum <guido@python.org> | 1992-04-13 15:54:59 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-04-13 15:54:59 +0000 |
commit | 5a8f82493315e69a8bcdc315926637c791c971ac (patch) | |
tree | 46349d752322499d88bebaa9eec2215e283ca6c8 /Include/modsupport.h | |
parent | 2ee12f4090187cf3d7a8b16711d939ebfd8ed7ca (diff) | |
download | cpython-git-5a8f82493315e69a8bcdc315926637c791c971ac.tar.gz |
Added declaration for mkvalue()
Diffstat (limited to 'Include/modsupport.h')
-rw-r--r-- | Include/modsupport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/modsupport.h b/Include/modsupport.h index 552c404dab..28821d9ef7 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) |