]> git.tdb.fi Git - builder.git/blobdiff - source/misc.h
Fix a race condition
[builder.git] / source / misc.h
index 0d6997c53263b02c3dacce41763641ead1a6abab..45c6636da83c057ef777d6e81333e828017a898f 100644 (file)
@@ -6,19 +6,8 @@
 #include <string>
 #include <msp/fs/path.h>
 
-enum LibMode
-{
-       ALL_STATIC,
-       LOCAL_STATIC,
-       DYNAMIC
-};
-
 typedef std::list<std::string> StringList;
 typedef std::list<Msp::FS::Path> PathList;
 typedef std::map<std::string, std::string> StringMap;
 
-/** Runs a command and returns its output as a string.  The exit status of the
-command is returned in the second parameter if it is not null. */
-std::string run_command(const StringList &, int * =0);
-
 #endif