summaryrefslogtreecommitdiffstats
path: root/Include/pythonrun.h
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-02-21 02:44:56 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-02-21 02:44:56 (GMT)
commitaee9dfba4a9230f2832dd69d67e92f8e0490a163 (patch)
tree27a9896969ac7ff79dc75017cff121a077c3eb6e /Include/pythonrun.h
parent34b345b8885e5db8ab6627c081ca86a8b78b6989 (diff)
parentb19fb2462eac776746f6cb40cc84b0587c83b9bc (diff)
downloadcpython-aee9dfba4a9230f2832dd69d67e92f8e0490a163.zip
cpython-aee9dfba4a9230f2832dd69d67e92f8e0490a163.tar.gz
cpython-aee9dfba4a9230f2832dd69d67e92f8e0490a163.tar.bz2
merge 2.6 with hash randomization fix
Diffstat (limited to 'Include/pythonrun.h')
-rw-r--r--Include/pythonrun.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/pythonrun.h b/Include/pythonrun.h
index 85bdd3d..7a29c08 100644
--- a/Include/pythonrun.h
+++ b/Include/pythonrun.h
@@ -171,6 +171,8 @@ typedef void (*PyOS_sighandler_t)(int);
PyAPI_FUNC(PyOS_sighandler_t) PyOS_getsig(int);
PyAPI_FUNC(PyOS_sighandler_t) PyOS_setsig(int, PyOS_sighandler_t);
+/* Random */
+PyAPI_FUNC(int) _PyOS_URandom (void *buffer, Py_ssize_t size);
#ifdef __cplusplus
}