Index: b/usr/src/lib/libnsl/nss/getauuser.c =================================================================== --- a/usr/src/lib/libnsl/nss/getauuser.c +++ b/usr/src/lib/libnsl/nss/getauuser.c @@ -31,9 +31,21 @@ #include #include #include -#include #include +#ifndef AUDITUSER_PARSE_ERANGE +#define AUDITUSER_PARSE_ERANGE 1 +#endif + +#ifndef AUDITUSER_NOT_FOUND +#define AUDITUSER_NOT_FOUND 2 +#endif + +typedef struct au_user_str_s { + char *au_name; + char *au_always; + char *au_never; +} au_user_str_t; /* externs from parse.c */ extern char *_strtok_escape(char *, char *, char **);