#ifndef MAP_STATIC_H #define MAP_STATIC_H struct map_static { int kind; /* 'u' == uid, 'g' == gid */ int remote_lo; int remote_hi; int local_base; struct map_static *next; }; extern struct map_static *read_map_static (char *filename); extern int map_static_uid_L2R (struct map_static *map, int uid); extern int map_static_gid_L2R (struct map_static *map, int gid); extern int map_static_uid_R2L (struct map_static *map, int uid); extern int map_static_gid_R2L (struct map_static *map, int gid); #endif