: 파일명.cpp로 만들고나서요...
: 소스 안에
:
: #include <time.h>
: #include <stdio.h>
: #include <dos.h>
: .....
: 컴파일하면요... 아래와 같이 나오거든요...
:
: [linuk2@localhost c]$ g++ localtime.cpp
g++ -I/usr/lib/bcc/include localtime.cpp
: localtime.cpp:1:2: invalid preprocessing directive #inlcude
: localtime.cpp:3:17: dos.h: 그런 파일이나 디렉토리가 없음
:
: 요걸 locate time.h로 찾아보면...
: /usr/lib/bcc/include/ 여기 밑에 모두 숨어있더군요...
:
: 어떻게 해줘요... 컴팔할때 여기 밑에 헤더파일을 사용할 수 있을까요?