summaryrefslogtreecommitdiff
path: root/execute.h
diff options
context:
space:
mode:
authorBen Fuhrmannek2016-03-03 16:51:02 +0100
committerBen Fuhrmannek2016-03-03 16:51:02 +0100
commit3966bdb919a34a341b88385209cdac9c7eac9991 (patch)
tree25cef2c2c305b36f8439d7981b64b5213e23d37f /execute.h
parent3e77c15105551dee21edac0ab090ffaf10c4ff4d (diff)
random + seed protection
Diffstat (limited to 'execute.h')
-rw-r--r--execute.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/execute.h b/execute.h
index 03d19d3..e4eca98 100644
--- a/execute.h
+++ b/execute.h
@@ -18,4 +18,12 @@ typedef struct _suhosin_internal_function_handler {
18 void *arg3; 18 void *arg3;
19} suhosin_internal_function_handler; 19} suhosin_internal_function_handler;
20 20
21// execute_ih.c
21S7_IH_FUNCTION(preg_replace); 22S7_IH_FUNCTION(preg_replace);
23
24// execute_rnd.c
25S7_IH_FUNCTION(srand);
26S7_IH_FUNCTION(mt_srand);
27S7_IH_FUNCTION(mt_rand);
28S7_IH_FUNCTION(rand);
29S7_IH_FUNCTION(getrandmax);