경고/오류 "함수 선언은 프로토타입이 아닙니다" 제가 만든 도서관이 있는데 파일 mylib.c: #include int testlib() { printf("Hello, World!\n"); return (0); } mylib 파일.h: #include extern int testlib(); 프로그램에서 다음 라이브러리 함수를 호출하려고 했습니다. 파일 myprogram.c: #include int main (int argc, char *argv[]) { testlib(); return (0); } 이 프로그램을 컴파일하려고 하면 다음 오류가 나타납니다. myprogram.c:1에서 포함된 파일mylib.h:2 경고: 함수 선언은 프로토타입이 아닙니다. 사용하고 있는 것:gcc (GCC) 3.4.5 200..