summaryrefslogtreecommitdiff
path: root/reentr.c
diff options
context:
space:
mode:
authorJan Dubois <jand@activestate.com>2003-11-04 08:52:14 -0800
committerAbhijit Menon-Sen <ams@wiw.org>2003-11-05 16:46:12 +0000
commit5cb13b8da93037c2cbdb71661f5e68b171d254b8 (patch)
tree48532880f333a8a33feb04e0cbff55fa9432052e /reentr.c
parent5ea525d0de039812e70221e734564f5bfd21c4be (diff)
downloadperl-5cb13b8da93037c2cbdb71661f5e68b171d254b8.tar.gz
reentr.pl is not defining _srandom_struct
Message-Id: <45igqvsus3hr8bno3si087j5qnrqvn79bf@4ax.com> p4raw-id: //depot/perl@21660
Diffstat (limited to 'reentr.c')
-rw-r--r--reentr.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/reentr.c b/reentr.c
index 881bd87b7a..493a3b5c62 100644
--- a/reentr.c
+++ b/reentr.c
@@ -127,6 +127,8 @@ Perl_reentrant_size(pTHX) {
#ifdef HAS_SETLOCALE_R
PL_reentrant_buffer->_setlocale_size = REENTRANTSMALLSIZE;
#endif /* HAS_SETLOCALE_R */
+#ifdef HAS_SRANDOM_R
+#endif /* HAS_SRANDOM_R */
#ifdef HAS_STRERROR_R
PL_reentrant_buffer->_strerror_size = REENTRANTSMALLSIZE;
#endif /* HAS_STRERROR_R */
@@ -211,6 +213,8 @@ Perl_reentrant_init(pTHX) {
#ifdef HAS_SETLOCALE_R
New(31338, PL_reentrant_buffer->_setlocale_buffer, PL_reentrant_buffer->_setlocale_size, char);
#endif /* HAS_SETLOCALE_R */
+#ifdef HAS_SRANDOM_R
+#endif /* HAS_SRANDOM_R */
#ifdef HAS_STRERROR_R
New(31338, PL_reentrant_buffer->_strerror_buffer, PL_reentrant_buffer->_strerror_size, char);
#endif /* HAS_STRERROR_R */
@@ -284,6 +288,8 @@ Perl_reentrant_free(pTHX) {
#ifdef HAS_SETLOCALE_R
Safefree(PL_reentrant_buffer->_setlocale_buffer);
#endif /* HAS_SETLOCALE_R */
+#ifdef HAS_SRANDOM_R
+#endif /* HAS_SRANDOM_R */
#ifdef HAS_STRERROR_R
Safefree(PL_reentrant_buffer->_strerror_buffer);
#endif /* HAS_STRERROR_R */