summaryrefslogtreecommitdiff
path: root/tests/test_pread.c
blob: 225ec708dfa970fef4a0ba8e6e98da79d3081a8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "common.h"

#include <unistd.h>

int main(int argc, char** argv) {
  char buffer[12] = {0};


  CHK_FAIL_START
  pread(0, buffer, 14, 0);
  CHK_FAIL_END

  puts(buffer);
  return ret;
}