exile.h: Move definitions to new file exile.c
Especially with exile_launch(), we will be included from more than one translation unit. Thus, ODR becomes a headache now. So move definitions to exile.c.
This commit is contained in:
orang tua
005851c645
melakukan
69829374c7
2
Makefile
2
Makefile
@ -10,7 +10,7 @@ clean:
|
|||||||
rm -f test testcpp
|
rm -f test testcpp
|
||||||
|
|
||||||
test: test.c exile.h
|
test: test.c exile.h
|
||||||
$(CC) test.c -g $(CFLAGS) -o test
|
$(CC) test.c exile.c -g $(CFLAGS) -o test
|
||||||
|
|
||||||
testcpp: test.cpp exile.h exile.hpp
|
testcpp: test.cpp exile.h exile.hpp
|
||||||
$(CXX) test.cpp -g $(CXXFLAGS) -o testcpp
|
$(CXX) test.cpp -g $(CXXFLAGS) -o testcpp
|
||||||
|
1
test.c
1
test.c
@ -489,6 +489,7 @@ int test_no_new_fds()
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extern int mkpath(const char *p, mode_t mode, int baseisfile);
|
||||||
int test_mkpath()
|
int test_mkpath()
|
||||||
{
|
{
|
||||||
system("rm -rf /tmp/.exile.h/");
|
system("rm -rf /tmp/.exile.h/");
|
||||||
|
Memuat…
x
Reference in New Issue
Block a user