summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-04-13 15:54:59 (GMT)
committerGuido van Rossum <guido@python.org>1992-04-13 15:54:59 (GMT)
commit5a8f82493315e69a8bcdc315926637c791c971ac (patch)
tree46349d752322499d88bebaa9eec2215e283ca6c8 /Include
parent2ee12f4090187cf3d7a8b16711d939ebfd8ed7ca (diff)
downloadcpython-5a8f82493315e69a8bcdc315926637c791c971ac.zip
cpython-5a8f82493315e69a8bcdc315926637c791c971ac.tar.gz
cpython-5a8f82493315e69a8bcdc315926637c791c971ac.tar.bz2
Added declaration for mkvalue()
Diffstat (limited to 'Include')
-rw-r--r--Include/modsupport.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/modsupport.h b/Include/modsupport.h
index 552c404..28821d9 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)