#include <stdio.h>
#include <errno.h>

main(int argc, char *argv[])
{
  if (creat("\377", 0666) == -1)
    perror("creat");
  return 0;
}
