diff options
author | Rickard Green <[email protected]> | 2017-03-27 14:39:49 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2017-04-05 14:36:43 +0200 |
commit | 74f11bdee247626ed6a3afe558bde4989687e642 (patch) | |
tree | a4ca0966d941c35f94825a73d7191ea96f34d4f6 /erts/emulator/pcre/pcre_globals.c | |
parent | a748cafdc7063d9f181ba12088db6458793ced2f (diff) | |
download | otp-74f11bdee247626ed6a3afe558bde4989687e642.tar.gz otp-74f11bdee247626ed6a3afe558bde4989687e642.tar.bz2 otp-74f11bdee247626ed6a3afe558bde4989687e642.zip |
Update PCRE to version 8.40
Diffstat (limited to 'erts/emulator/pcre/pcre_globals.c')
-rw-r--r-- | erts/emulator/pcre/pcre_globals.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/erts/emulator/pcre/pcre_globals.c b/erts/emulator/pcre/pcre_globals.c index ce143b8c21..4d83606a61 100644 --- a/erts/emulator/pcre/pcre_globals.c +++ b/erts/emulator/pcre/pcre_globals.c @@ -6,7 +6,7 @@ and semantics are as close as possible to those of the Perl 5 language. Written by Philip Hazel - Copyright (c) 1997-2012 University of Cambridge + Copyright (c) 1997-2014 University of Cambridge ----------------------------------------------------------------------------- Redistribution and use in source and binary forms, with or without @@ -74,6 +74,7 @@ PCRE_EXP_DATA_DEFN void (*PUBL(free))(void *) = LocalPcreFree; PCRE_EXP_DATA_DEFN void *(*PUBL(stack_malloc))(size_t) = LocalPcreMalloc; PCRE_EXP_DATA_DEFN void (*PUBL(stack_free))(void *) = LocalPcreFree; PCRE_EXP_DATA_DEFN int (*PUBL(callout))(PUBL(callout_block) *) = NULL; +PCRE_EXP_DATA_DEFN int (*PUBL(stack_guard))(void) = NULL; #elif !defined VPCOMPAT PCRE_EXP_DATA_DEFN void *(*PUBL(malloc))(size_t) = malloc; @@ -81,6 +82,7 @@ PCRE_EXP_DATA_DEFN void (*PUBL(free))(void *) = free; PCRE_EXP_DATA_DEFN void *(*PUBL(stack_malloc))(size_t) = malloc; PCRE_EXP_DATA_DEFN void (*PUBL(stack_free))(void *) = free; PCRE_EXP_DATA_DEFN int (*PUBL(callout))(PUBL(callout_block) *) = NULL; +PCRE_EXP_DATA_DEFN int (*PUBL(stack_guard))(void) = NULL; #endif /* End of pcre_globals.c */ |