diff options
author | jbj <devnull@localhost> | 2001-11-10 19:24:19 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-11-10 19:24:19 +0000 |
commit | a086ad7dd1cb93321faa1b863622123edd2287b3 (patch) | |
tree | 53a14f0b47334ee5bba0430b719dd07cf3791dce /lib/rpmds.h | |
parent | 431499aecadbc9effe9559fb09ba9e77aca8865c (diff) | |
download | librpm-tizen-a086ad7dd1cb93321faa1b863622123edd2287b3.tar.gz librpm-tizen-a086ad7dd1cb93321faa1b863622123edd2287b3.tar.bz2 librpm-tizen-a086ad7dd1cb93321faa1b863622123edd2287b3.zip |
Start removing alGetHeader.
CVS patchset: 5168
CVS date: 2001/11/10 19:24:19
Diffstat (limited to 'lib/rpmds.h')
-rw-r--r-- | lib/rpmds.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/rpmds.h b/lib/rpmds.h index 1ca9aa1f2..cd802b8d5 100644 --- a/lib/rpmds.h +++ b/lib/rpmds.h @@ -98,14 +98,14 @@ extern "C" { */ /*@unused@*/ /*@null@*/ rpmFNSet rpmfnsUnlink (/*@killref@*/ /*@only@*/ /*@null@*/ rpmFNSet fns, - const char * msg) + /*@null@*/ const char * msg) /*@modifies fns @*/; /** @todo Remove debugging entry from the ABI. */ /*@-exportlocal@*/ /*@null@*/ rpmFNSet XrpmfnsUnlink (/*@killref@*/ /*@only@*/ /*@null@*/ rpmFNSet fns, - const char * msg, const char * fn, unsigned ln) + /*@null@*/ const char * msg, const char * fn, unsigned ln) /*@modifies fns @*/; /*@=exportlocal@*/ #define rpmfnsUnlink(_fns, _msg) XrpmfnsUnlink(_fns, _msg, __FILE__, __LINE__) @@ -116,11 +116,11 @@ rpmFNSet XrpmfnsUnlink (/*@killref@*/ /*@only@*/ /*@null@*/ rpmFNSet fns, * @return new file info set reference */ /*@unused@*/ -rpmFNSet rpmfnsLink (/*@null@*/ rpmFNSet fns, const char * msg) +rpmFNSet rpmfnsLink (/*@null@*/ rpmFNSet fns, /*@null@*/ const char * msg) /*@modifies fns @*/; /** @todo Remove debugging entry from the ABI. */ -rpmFNSet XrpmfnsLink (/*@null@*/ rpmFNSet fns, const char * msg, +rpmFNSet XrpmfnsLink (/*@null@*/ rpmFNSet fns, /*@null@*/ const char * msg, const char * fn, unsigned ln) /*@modifies fns @*/; #define rpmfnsLink(_fns, _msg) XrpmfnsLink(_fns, _msg, __FILE__, __LINE__) @@ -152,14 +152,14 @@ rpmFNSet fnsNew(Header h, rpmTag tagN, int scareMem) */ /*@unused@*/ /*@null@*/ rpmDepSet rpmdsUnlink (/*@killref@*/ /*@only@*/ /*@null@*/ rpmDepSet ds, - const char * msg) + /*@null@*/ const char * msg) /*@modifies ds @*/; /** @todo Remove debugging entry from the ABI. */ /*@-exportlocal@*/ /*@null@*/ rpmDepSet XrpmdsUnlink (/*@killref@*/ /*@only@*/ /*@null@*/ rpmDepSet ds, - const char * msg, const char * fn, unsigned ln) + /*@null@*/ const char * msg, const char * fn, unsigned ln) /*@modifies ds @*/; /*@=exportlocal@*/ #define rpmdsUnlink(_ds, _msg) XrpmdsUnlink(_ds, _msg, __FILE__, __LINE__) @@ -170,11 +170,11 @@ rpmDepSet XrpmdsUnlink (/*@killref@*/ /*@only@*/ /*@null@*/ rpmDepSet ds, * @return new dependency set reference */ /*@unused@*/ -rpmDepSet rpmdsLink (/*@null@*/ rpmDepSet ds, const char * msg) +rpmDepSet rpmdsLink (/*@null@*/ rpmDepSet ds, /*@null@*/ const char * msg) /*@modifies ds @*/; /** @todo Remove debugging entry from the ABI. */ -rpmDepSet XrpmdsLink (/*@null@*/ rpmDepSet ds, const char * msg, +rpmDepSet XrpmdsLink (/*@null@*/ rpmDepSet ds, /*@null@*/ const char * msg, const char * fn, unsigned ln) /*@modifies ds @*/; #define rpmdsLink(_ds, _msg) XrpmdsLink(_ds, _msg, __FILE__, __LINE__) |