안녕하세요.

오류의 내용을 보면  test.c:46: `Events' undeclared (first use in this function)
가 있네요.. Events라는 변수가 선언되어 있지 않다고 하네요..

소스에서 보면..

    struct pollfd Event[1];

로 Event로 선언되어 있습니다.

이것을 아래와 같이 하시고 해 보세요..
  
     struct pollfd Events[1];  


그럼 수고하세요..




>DIO과정에서 내용을 바꿔서 해보는 중인데요...
>make 과정에서 계속 에러가 나네요..
>내용을 알수가 없어서 이렇게 올려봅니다.
>답변 부탁드리겠습니다.
>
>
>root@heya-com:~/com/linux-2.4.19/test_dio# make
>for i in app device ; do make -C $i || exit  ; done
>make[1]: Entering directory `/home/heya/com/linux-2.4.19/test_dio/app'
>Compiling test.c ...
>arm-linux-gcc -c -I. -I/usr/arm-linux/include -I../include -Wall -O2 -o test.o test.c
>test.c: In function `main':
>test.c:46: `Events' undeclared (first use in this function)
>test.c:46: (Each undeclared identifier is reported only once
>test.c:46: for each function it appears in.)
>test.c:102: parse error at end of input
>test.c:28: warning: unused variable `keystate'
>test.c:22: warning: unused variable `Event'
>make[1]: *** [test.o] 오류 1
>make[1]: Leaving directory `/home/heya/com/linux-2.4.19/test_dio/app'
>make: *** [all] 오류 2
>root@heya-com:~/com/linux-2.4.19/test_dio#
>