#include <sys/stat.h>

main()
{
  int i = mkfifo("./dt_pipe", S_IRUSR | S_IWUSR);
  printf("%d\n", i);
}
