aboutsummaryrefslogtreecommitdiff
path: root/tests/core/test_perrar.in
blob: d7c9eae75475b683dc785f847af12ad269bcf7a7 (plain)
1
2
3
4
5
6
7
8
9
10
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>

int main(int argc, char** argv) {
  int retval = open("NonExistingFile", O_RDONLY);
  if (retval == -1) perror("Cannot open NonExistingFile");
  return 0;
}