summaryrefslogtreecommitdiff
path: root/python/rpmfd-py.h
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2002-07-14 21:23:29 +0000
committerjbj <devnull@localhost>2002-07-14 21:23:29 +0000
commit3ea74aa3c7203c10ad97326778e22b1e654eefc7 (patch)
tree6968b695ccf7c4b0e8539eff13a1263770a72a70 /python/rpmfd-py.h
parent8caf68303188699c1a1d9499c53a43794a86d922 (diff)
downloadlibrpm-tizen-3ea74aa3c7203c10ad97326778e22b1e654eefc7.tar.gz
librpm-tizen-3ea74aa3c7203c10ad97326778e22b1e654eefc7.tar.bz2
librpm-tizen-3ea74aa3c7203c10ad97326778e22b1e654eefc7.zip
- python: sanity check fixes on rpmts/rpmte methods.
CVS patchset: 5554 CVS date: 2002/07/14 21:23:29
Diffstat (limited to 'python/rpmfd-py.h')
-rw-r--r--python/rpmfd-py.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/rpmfd-py.h b/python/rpmfd-py.h
index eed1dccc4..5ab81d692 100644
--- a/python/rpmfd-py.h
+++ b/python/rpmfd-py.h
@@ -10,8 +10,10 @@ typedef struct rpmfdObject_s {
FD_t fd;
} rpmfdObject;
+/*@unchecked@*/
extern PyTypeObject rpmfd_Type;
-rpmfdObject * rpmfd_Wrap(FD_t fd);
+rpmfdObject * rpmfd_Wrap(FD_t fd)
+ /*@*/;
#endif