blob: 0f1afe5deecc5303f43c567fe74ddd6595f970db [file] [log] [blame]
sewardj9bc72162002-05-23 16:53:20 +00001
2#include <stdio.h>
3#include <sys/types.h>
4#include <sys/stat.h>
5#include <fcntl.h>
6#include <unistd.h>
7
8int main ( void )
9{
10 int fd, n;
11 char buf[10];
12 fd = open("foo/bar/xyzzy", O_RDONLY); /* fails */
13 printf("fd = %d\n", fd);
14 n = read ( fd, buf, 10 );
15 printf ("n = %d\n", n);
16 return 0;
17}