inlcude: new prototypes

This commit is contained in:
Ben Gras 2010-06-09 12:53:09 +00:00
parent 8fea317779
commit ac34bfd42b
3 changed files with 5 additions and 1 deletions

View File

@ -23,6 +23,7 @@ _PROTOTYPE( void endgrent, (void) );
_PROTOTYPE( struct group *getgrent, (void) );
_PROTOTYPE( int setgrent, (void) );
_PROTOTYPE( void setgrfile, (const char *_file) );
_PROTOTYPE( const char *group_from_gid, (gid_t, int) );
#endif
#endif /* _GRP_H */

View File

@ -28,6 +28,7 @@ _PROTOTYPE( void endpwent, (void) );
_PROTOTYPE( struct passwd *getpwent, (void) );
_PROTOTYPE( int setpwent, (void) );
_PROTOTYPE( void setpwfile, (const char *_file) );
_PROTOTYPE( const char *user_from_uid, (uid_t, int) );
#endif
#endif /* _PWD_H */

View File

@ -207,7 +207,9 @@ _PROTOTYPE( gid_t getngid, (endpoint_t proc_ep) );
_PROTOTYPE( int getpagesize, (void) );
_PROTOTYPE( int setgroups, (int ngroups, const gid_t *gidset) );
_PROTOTYPE( int initgroups, (const char *name, gid_t basegid) );
_PROTOTYPE( void *setmode, (const char *));
_PROTOTYPE( void *setmode, (const char *) );
_PROTOTYPE( mode_t getmode, (const void *, mode_t) );
_PROTOTYPE( void strmode, (mode_t, char *) );
#endif