9 lines
103 B
C++
9 lines
103 B
C++
namespace cpp {
|
|
|
|
extern int foo3(int);
|
|
|
|
int foo4(int x) {
|
|
return foo3(x) + 4;
|
|
}
|
|
|
|
} // namespace cpp
|