Mercurial > urweb
changeset 1152:e6eabf0c5ccc
Prototype memmem()
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sat, 06 Feb 2010 16:54:13 -0500 |
parents | de48dc2c9ee8 |
children | a62ac791f7fb |
files | src/c/request.c |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/c/request.c Sat Feb 06 15:34:41 2010 -0500 +++ b/src/c/request.c Sat Feb 06 16:54:13 2010 -0500 @@ -15,6 +15,8 @@ #define MAX_RETRIES 5 +void *memmem(const void *b1, size_t len1, const void *b2, size_t len2); + static int try_rollback(uw_context ctx, void *logger_data, uw_logger log_error) { int r = uw_rollback(ctx);