summaryrefslogtreecommitdiffstats
path: root/Include/sysmodule.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-05-22 17:31:52 (GMT)
committerGuido van Rossum <guido@python.org>1996-05-22 17:31:52 (GMT)
commit4b0538c47239865d2e0542812fe365ec13a56e29 (patch)
tree29e7b28871b481a3689f01fef82567275b1db374 /Include/sysmodule.h
parentb9d876020dbeac32fb179712c4f4f8eedf9cbdbd (diff)
downloadcpython-4b0538c47239865d2e0542812fe365ec13a56e29.zip
cpython-4b0538c47239865d2e0542812fe365ec13a56e29.tar.gz
cpython-4b0538c47239865d2e0542812fe365ec13a56e29.tar.bz2
Added PySys_SetPath.
Diffstat (limited to 'Include/sysmodule.h')
-rw-r--r--Include/sysmodule.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/sysmodule.h b/Include/sysmodule.h
index 1e4bff1..3680d1b 100644
--- a/Include/sysmodule.h
+++ b/Include/sysmodule.h
@@ -35,6 +35,7 @@ int PySys_SetObject Py_PROTO((char *, PyObject *));
FILE *PySys_GetFile Py_PROTO((char *, FILE *));
void PySys_Init Py_PROTO((void));
void PySys_SetArgv Py_PROTO((int, char **));
+void PySys_SetPath Py_PROTO((char *));
extern DL_IMPORT(PyObject *) _PySys_TraceFunc, *_PySys_ProfileFunc;
extern DL_IMPORT(int) _PySys_CheckInterval;