summaryrefslogtreecommitdiff
path: root/meson-cc-tests/mkdir-variant-1.c
blob: 88910d107695c1031464cd8114938f59cbe15b76 (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");
  return 0;
}