pty: Activate the signature wrapper of forkpty.
[gnulib.git] / lib / idcache.h
1 #ifndef IDCACHE_H
2 # define IDCACHE_H 1
3
4 # include <sys/types.h>
5
6 extern char *getuser (uid_t uid);
7 extern char *getgroup (gid_t gid);
8 extern uid_t *getuidbyname (const char *user);
9 extern gid_t *getgidbyname (const char *group);
10
11 #endif