blob: 736a42e0738494f618d759cd4919d369d78b1524 [file] [log] [blame]
#include <sys/ipc.h>
#include <stdio.h>
int main(int ac, char **av)
{
while (*++av)
printf("0x%x\n", ftok(*av, 0));
return 0;
}