diff options
author | jbj <devnull@localhost> | 2001-10-08 14:48:22 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-10-08 14:48:22 +0000 |
commit | 4c15c4d2740d44d437648b17ef89a34b366bc654 (patch) | |
tree | 5d5c37b0202820813612ff744c17438a9abc0bab /beecrypt/memchunk.h | |
parent | d14c5439529865c90d2a7e31c0dba5f5c9ff1765 (diff) | |
download | librpm-tizen-4c15c4d2740d44d437648b17ef89a34b366bc654.tar.gz librpm-tizen-4c15c4d2740d44d437648b17ef89a34b366bc654.tar.bz2 librpm-tizen-4c15c4d2740d44d437648b17ef89a34b366bc654.zip |
Resolve conflicts.
CVS patchset: 5100
CVS date: 2001/10/08 14:48:22
Diffstat (limited to 'beecrypt/memchunk.h')
-rw-r--r-- | beecrypt/memchunk.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/beecrypt/memchunk.h b/beecrypt/memchunk.h index 85fa9a185..120bc4683 100644 --- a/beecrypt/memchunk.h +++ b/beecrypt/memchunk.h @@ -41,22 +41,27 @@ extern "C" { /** */ -BEEDLLAPI /*@only@*/ /*@null@*/ +BEECRYPTAPI /*@only@*/ /*@null@*/ memchunk* memchunkAlloc(int size) /*@*/; /** */ -BEEDLLAPI +BEECRYPTAPI /*@unused@*/ void memchunkFree(/*@only@*/ /*@null@*/memchunk* m) /*@*/; /** */ -BEEDLLAPI /*@only@*/ /*@null@*/ +BEECRYPTAPI /*@only@*/ /*@null@*/ memchunk* memchunkResize(/*@only@*/ /*@null@*/memchunk* m, int size) /*@*/; +/** + */ +BEECRYPTAPI /*@only@*/ /*@null@*/ +memchunk* memchunkClone(const memchunk* m); + #ifdef __cplusplus } #endif |