diff options
author | jbj <devnull@localhost> | 2004-10-09 17:29:22 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2004-10-09 17:29:22 +0000 |
commit | b831315e41173e27a4e402c65d318b43558c4fca (patch) | |
tree | 4d8b5816ed2c4a51657bb698320cfd62761c29d0 /system.h | |
parent | d8822ba626caea60e6310157c1a180cde16bfe0a (diff) | |
download | librpm-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.h | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -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 |