Conflicts:
	src/neutrino.cpp


Origin commit data
------------------
Branch: ni/coolstream
Commit: 4ace56d488
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-01-29 (Sun, 29 Jan 2017)



------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2017-01-29 21:30:01 +01:00
14 changed files with 126 additions and 47 deletions

View File

@@ -43,6 +43,7 @@ int my_system(int argc, const char *arg, ...); /* argc is number of arguments in
//int ni_system(std::string cmd, bool noshell = true, bool background = false); //NI background
FILE* my_popen( pid_t& pid, const char *cmdstring, const char *type);
int run_pty(pid_t &pid, const char *cmdstring);
int safe_mkdir(const char * path);
inline int safe_mkdir(std::string path) { return safe_mkdir(path.c_str()); }