我有main.cpp
:
#include "censorship_dec.h"
using namespace std;
int main () {
censorship();
return 0;
}
这是我的censorship_dec.h
:
#include <iostream>
#include <stdio.h>
#include <string.h>
using namespace std;
void censorship();
这是我的censorship_mng.cpp
:
#include "censorship_dec.h"
using namespace std;
void censorship()
{
cout << "bla bla bla" << endl;
}
我试图在 SSH (Linux) 中运行这些文件,所以我写了: make main
,但我得到了:
g++ main.cpp -o main
/tmp/ccULJJMO.o: In function `main':
main.cpp:(.text+0x71): undefined reference to `censorship()'
collect2: ld returned 1 exit status
make: *** [main] Error 1
请帮忙!