Diff for /embedaddon/pcre/pcre_version.c between versions 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2012/02/21 23:50:25 version 1.1.1.3, 2013/07/22 08:25:55
Line 79  I could find no way of detecting that a macro is defin Line 79  I could find no way of detecting that a macro is defin
 pre-processor time. This hack uses a standard trick for avoiding calling  pre-processor time. This hack uses a standard trick for avoiding calling
 the STRING macro with an empty argument when doing the test. */  the STRING macro with an empty argument when doing the test. */
   
#ifdef COMPILE_PCRE8#if defined COMPILE_PCRE8
 PCRE_EXP_DEFN const char * PCRE_CALL_CONVENTION  PCRE_EXP_DEFN const char * PCRE_CALL_CONVENTION
 pcre_version(void)  pcre_version(void)
#else#elif defined COMPILE_PCRE16
 PCRE_EXP_DEFN const char * PCRE_CALL_CONVENTION  PCRE_EXP_DEFN const char * PCRE_CALL_CONVENTION
 pcre16_version(void)  pcre16_version(void)
   #elif defined COMPILE_PCRE32
   PCRE_EXP_DEFN const char * PCRE_CALL_CONVENTION
   pcre32_version(void)
 #endif  #endif
 {  {
 return (XSTRING(Z PCRE_PRERELEASE)[1] == 0)?  return (XSTRING(Z PCRE_PRERELEASE)[1] == 0)?

Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>