summaryrefslogtreecommitdiff
path: root/meson-cc-tests/mkdir-variant-2.c
blob: d0ab7b298deb6bac20970b470a7d7bf5637541e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#ifdef HAVE_IO_H
#include <io.h>
#endif

int main(int ac, char **av)
{
  mkdir("hello.world", 0777);
  return 0;
}