X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/b5422865f473faf3977f31b96a635c4c8c4ede09..9dae56ea45a0f5f8136a5c93d6f3a7f99399ca73:/pcre/pcre_ucp_searchfuncs.cpp diff --git a/pcre/pcre_ucp_searchfuncs.cpp b/pcre/pcre_ucp_searchfuncs.cpp index f63bdbc..5592865 100644 --- a/pcre/pcre_ucp_searchfuncs.cpp +++ b/pcre/pcre_ucp_searchfuncs.cpp @@ -6,7 +6,7 @@ needed by JavaScriptCore and the rest of WebKit. Originally written by Philip Hazel Copyright (c) 1997-2006 University of Cambridge - Copyright (C) 2002, 2004, 2006, 2007 Apple Inc. All rights reserved. + Copyright (C) 2002, 2004, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. ----------------------------------------------------------------------------- Redistribution and use in source and binary forms, with or without @@ -41,6 +41,7 @@ POSSIBILITY OF SUCH DAMAGE. /* This module contains code for searching the table of Unicode character properties. */ +#include "config.h" #include "pcre_internal.h" #include "ucpinternal.h" /* Internal table details */ @@ -59,7 +60,7 @@ Arguments: Returns: the other case or -1 if none */ -int kjs_pcre_ucp_othercase(unsigned c) +int jsc_pcre_ucp_othercase(unsigned c) { int bot = 0; int top = sizeof(ucp_table) / sizeof(cnode);