diff options
author | pauln <devnull@localhost> | 2004-03-11 07:03:40 +0000 |
---|---|---|
committer | pauln <devnull@localhost> | 2004-03-11 07:03:40 +0000 |
commit | da9a1be04c4225fd6855c900ff3c011ac2347b50 (patch) | |
tree | 7d56ec4b69987b3f803aed5c0adda4107fe8740e /python/spec-py.h | |
parent | fcfdff02e8304b6ba36a0e8667c0172dec898444 (diff) | |
download | librpm-tizen-da9a1be04c4225fd6855c900ff3c011ac2347b50.tar.gz librpm-tizen-da9a1be04c4225fd6855c900ff3c011ac2347b50.tar.bz2 librpm-tizen-da9a1be04c4225fd6855c900ff3c011ac2347b50.zip |
Begin lint fixes for spec-py
CVS patchset: 7165
CVS date: 2004/03/11 07:03:40
Diffstat (limited to 'python/spec-py.h')
-rw-r--r-- | python/spec-py.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/python/spec-py.h b/python/spec-py.h index f6fa81446..897b833bc 100644 --- a/python/spec-py.h +++ b/python/spec-py.h @@ -10,13 +10,22 @@ typedef struct specObject_s { PyObject_HEAD /*type specific fields */ +/*@null@*/ Spec spec; } specObject; extern PyTypeObject spec_Type; -Spec specFromSpec(specObject * spec); +/** + */ +/*@null@*/ +Spec specFromSpec(specObject * spec) +/*@*/; -specObject * spec_Wrap(Spec spec); +/** + */ +/*@null@*/ +specObject * spec_Wrap(Spec spec) +/*@*/; #endif /* RPMPYTHON_SPEC */ |