summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/ctype.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2007-07-28 02:44:55 +0000
committerBenny Prijono <bennylp@teluu.com>2007-07-28 02:44:55 +0000
commit483a106bd1476d3eb0a2168854318cfef4716b35 (patch)
treeacfe7b2abca3aa9486bf536388a6c4beaebd951a /pjlib/include/pj/ctype.h
parent13ffcf20b82f3170f6edeba19d710dad49dbce2d (diff)
Continue work on ticket #354: changed pjlib-util and pjnath libraries to .DSO (DLL) in Symbian
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1410 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include/pj/ctype.h')
-rw-r--r--pjlib/include/pj/ctype.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/pjlib/include/pj/ctype.h b/pjlib/include/pj/ctype.h
index ada2acfb..589edae6 100644
--- a/pjlib/include/pj/ctype.h
+++ b/pjlib/include/pj/ctype.h
@@ -136,7 +136,8 @@ PJ_INLINE(int) pj_isxdigit(int c){ return isxdigit(c); }
/**
* Array of hex digits, in lowerspace.
*/
-extern char pj_hex_digits[];
+/*extern char pj_hex_digits[];*/
+#define pj_hex_digits "0123456789abcdef"
/**
* Convert a value to hex representation.