summaryrefslogtreecommitdiff
path: root/system.h
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2004-10-09 17:29:22 +0000
committerjbj <devnull@localhost>2004-10-09 17:29:22 +0000
commitb831315e41173e27a4e402c65d318b43558c4fca (patch)
tree4d8b5816ed2c4a51657bb698320cfd62761c29d0 /system.h
parentd8822ba626caea60e6310157c1a180cde16bfe0a (diff)
downloadlibrpm-tizen-b831315e41173e27a4e402c65d318b43558c4fca.tar.gz
librpm-tizen-b831315e41173e27a4e402c65d318b43558c4fca.tar.bz2
librpm-tizen-b831315e41173e27a4e402c65d318b43558c4fca.zip
Splint fiddles.
CVS patchset: 7435 CVS date: 2004/10/09 17:29:22
Diffstat (limited to 'system.h')
-rw-r--r--system.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/system.h b/system.h
index 7f55fb6eb..a751fdc68 100644
--- a/system.h
+++ b/system.h
@@ -561,16 +561,18 @@ typedef /*@concrete@*/ struct
/*@=constuse@*/
#endif
-extern int glob (const char *pattern, int flags,
- int (*errfunc) (const char *, int),
- /*@out@*/ glob_t *pglob)
+/*@-type@*/ /* XXX glob64_t */
+extern int glob (const char *__pattern, int __flags,
+ int (*__errfunc) (const char *, int),
+ /*@out@*/ glob_t *__pglob)
/*@globals errno, fileSystem @*/
- /*@modifies *pglob, errno, fileSystem @*/;
+ /*@modifies *__pglob, errno, fileSystem @*/;
/* XXX only annotation is a white lie */
-extern void globfree (/*@only@*/ glob_t *pglob)
- /*@modifies *pglob @*/;
+extern void globfree (/*@only@*/ glob_t *__pglob)
+ /*@modifies *__pglob @*/;
+/*@=type@*/
#ifdef _GNU_SOURCE
-extern int glob_pattern_p (const char *pattern, int quote)
+extern int glob_pattern_p (const char *__pattern, int __quote)
/*@*/;
#endif