1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Deal with the LOGIN_NAME_MAX issue in the NetBSD->FreeBSD

translation^H^H^Hhack layer.
This commit is contained in:
David E. O'Brien 2003-09-11 03:28:21 +00:00
parent 5c5967082f
commit 1569f861d7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=119975

View File

@ -15,3 +15,10 @@ typedef __size_t size_t;
#endif
long long strsuftollx(const char *, const char *,
long long, long long, char *, size_t);
/*
* IEEE Std 1003.1c-95, adopted in X/Open CAE Specification Issue 5 Version 2
*/
#if __POSIX_VISIBLE >= 199506 || __XSI_VISIBLE >= 500
#define LOGIN_NAME_MAX MAXLOGNAME /* max login name length (incl. NUL) */
#endif