
int link(char *s1, char *s2)
{
	return(symlink(s1, s2));
}

int chown (char *s, int a, int b)
{
  return 0;
}
