o Rename "namespace" argument to "attrnamespace" as namespace is a C++

reserved word, causing breakage when a C++ program included libutil.h
  This change will be propagated elsewhere shortly.

Submitted by:	jkh
Obtained from:	TrustedBSD Project
This commit is contained in:
rwatson 2001-03-19 05:04:30 +00:00
parent 3f733d1c79
commit 0459fcb97a

View File

@ -48,8 +48,9 @@ struct utmp;
struct in_addr;
__BEGIN_DECLS
int extattr_namespace_to_string(int namespace, char **string);
int extattr_string_to_namespace(const char *string, int *namespace);
int extattr_namespace_to_string __P((int attrnamespace, char **string));
int extattr_string_to_namespace __P((const char *string,
int *attrnamespace));
void login __P((struct utmp *_ut));
int login_tty __P((int _fd));
int logout __P((const char *_line));