diff options
author | Badlop <badlop@process-one.net> | 2009-03-24 23:09:46 +0000 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2009-03-24 23:09:46 +0000 |
commit | 1f3acfc83f71396b08c43b2fe953620e9b332365 (patch) | |
tree | 5f980a2911e766229bcd3bbce41708e8ac741216 /src | |
parent | Merge 1998 from trunk. (diff) |
* src/expat_erl.c: Fix implicit declaration of function
x_fix_buff (thanks to Dennis Schridde)(EJAB-900)
SVN Revision: 2000
Diffstat (limited to 'src')
-rw-r--r-- | src/expat_erl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/expat_erl.c b/src/expat_erl.c index e4c3fd10b..a9cce6e76 100644 --- a/src/expat_erl.c +++ b/src/expat_erl.c @@ -14,6 +14,8 @@ * Workaround for EI encode_string bug */ +int x_fix_buff(ei_x_buff* x, int szneeded); + #define put8(s,n) do { \ (s)[0] = (char)((n) & 0xff); \ (s) += 1; \ |