ourhdr 썸네일형 리스트형 실행파일 만들기 : Make a .exe file for APUE APUE 의 모든 소스 코드들은 우선 error.h 가 컴파일 된 상태에서 링크를 통해 만들어져야 한다. 직접적인 예제를 보여주면 gcc -c error.c //error.o가 만들어짐 gcc -c myWC.c //myWC.o가 만들어짐 gcc -o a.out error.o myWC.o //실행파일을 a.out으로, error.o와 myWC.o를 링크시킨다. a.out //실행. 더보기 ourhdr.h 역시, Advanced Programming in the UNIX Environment(이하 APUE)의 기본 헤더파일. 다운 받아도 좋고, 직접 긁어 저장해도 좋다. /* Our own header, to be included *after* all standard system headers */ #ifndef __ourhdr_h #define __ourhdr_h #include /* required for some of our prototypes */ #include /* for convenience */ #include /* for convenience */ #include /* for convenience */ #include /* for convenience */ #define MAXLINE 40.. 더보기 이전 1 다음