Change the signature of ftok from (const char *, char) to (const char *, int)

Obtained from:	NetBSD (christos)
This commit is contained in:
Tim J. Robbins 2004-06-01 06:53:07 +00:00
parent a5dc42def9
commit 95a535af6d

View File

@ -35,7 +35,7 @@ __FBSDID("$FreeBSD$");
key_t
ftok(path, id)
const char *path;
char id;
int id;
{
struct stat st;