15 lines
242 B
C++
15 lines
242 B
C++
#ifndef MINIMAL_LIB_H_
|
|
#define MINIMAL_LIB_H_
|
|
|
|
namespace minimal_lib {
|
|
|
|
static int otherValue = 0;
|
|
|
|
#pragma GCC visibility push(default)
|
|
|
|
int getNewValue(int x);
|
|
|
|
#pragma GCC visibility pop
|
|
} // namespace minimal_lib
|
|
#endif // MINIMAL_LIB_H_
|