Various Ubuntu changes.

This commit is contained in:
Robin Davies
2021-09-08 13:15:49 -04:00
parent eb0dc52322
commit 210e496ffd
12 changed files with 130 additions and 105 deletions
+3 -3
View File
@@ -22,10 +22,10 @@
namespace pipedal {
// exec a command, returning the actual exit code (unlike execXX() or system() )
int SysExec(const char*szCommand);
int sysExec(const char*szCommand);
// execute a command, suppressing output.
void SilentSysExec(const char *szCommand);
int silentSysExec(const char *szCommand);
std::string GetSelfExePath();
std::string getSelfExePath();
}