parent
39db7b1afc
commit
8a57b608ad
10 changed files with 16 additions and 12 deletions
@ -1,5 +1,5 @@ |
||||
#include "libA.hpp" |
||||
|
||||
std::string getLibStr() { |
||||
std::string getLibStr(void) { |
||||
return "Hello World"; |
||||
} |
||||
|
@ -1,6 +1,6 @@ |
||||
#include "libB.hpp" |
||||
#include <zlib.h> |
||||
|
||||
std::string getZlibVers() { |
||||
std::string getZlibVers(void) { |
||||
return zlibVersion(); |
||||
} |
||||
|
@ -1,5 +1,5 @@ |
||||
#include "libA.hpp" |
||||
|
||||
std::string getLibStr() { |
||||
std::string getLibStr(void) { |
||||
return "Hello World"; |
||||
} |
||||
|
@ -1,5 +1,5 @@ |
||||
#include "libB.hpp" |
||||
|
||||
std::string getZlibVers() { |
||||
std::string getZlibVers(void) { |
||||
return "STUB"; |
||||
} |
||||
|
Loading…
Reference in new issue