Files
Arquivotheca.SunOS-4.1.4/lib/libc/gen/common/ftok.c
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

20 lines
399 B
C

#if !defined(lint) && defined(SCCSIDS)
static char sccsid[] = "@(#)ftok.c 1.1 94/10/31 SMI"; /* from S5R2 1.2 */
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/sysmacros.h>
key_t
ftok(path, id)
char *path;
char id;
{
struct stat st;
return(stat(path, &st) < 0 ? (key_t)-1 :
(key_t)((key_t)id << 24 | ((long)(unsigned)minor(st.st_dev)) << 16 |
(unsigned)st.st_ino));
}