mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 08:11:08 +00:00
Use __PMT instead of __P where appropriate.
This commit is contained in:
parent
e2e2181e41
commit
36ccb375a7
@ -334,16 +334,16 @@ extern char *alloca ();
|
||||
#include <glob.h>
|
||||
|
||||
#ifdef HAVE_GETLOGIN_R
|
||||
extern int getlogin_r __P ((char *, size_t));
|
||||
extern int getlogin_r __PMT ((char *, size_t));
|
||||
#else
|
||||
extern char *getlogin __P ((void));
|
||||
extern char *getlogin __PMT ((void));
|
||||
#endif
|
||||
|
||||
static const char *next_brace_sub __P ((const char *begin, int flags));
|
||||
|
||||
#endif /* GLOB_ONLY_P */
|
||||
|
||||
static int glob_in_dir __P ((const char *pattern, const char *directory,
|
||||
static int glob_in_dir __PMT ((const char *pattern, const char *directory,
|
||||
int flags,
|
||||
int (*errfunc) (const char *, int),
|
||||
glob_t *pglob));
|
||||
@ -396,7 +396,7 @@ GLOB_ATTRIBUTE
|
||||
glob (pattern, flags, errfunc, pglob)
|
||||
const char *pattern;
|
||||
int flags;
|
||||
int (*errfunc) __P ((const char *, int));
|
||||
int (*errfunc) __PMT ((const char *, int));
|
||||
glob_t *pglob;
|
||||
{
|
||||
const char *filename;
|
||||
@ -1283,7 +1283,7 @@ glob_in_dir (pattern, directory, flags, errfunc, pglob)
|
||||
const char *pattern;
|
||||
const char *directory;
|
||||
int flags;
|
||||
int (*errfunc) __P ((const char *, int));
|
||||
int (*errfunc) __PMT ((const char *, int));
|
||||
glob_t *pglob;
|
||||
{
|
||||
__ptr_t stream = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user