normalize includes: common

This commit is contained in:
brainiac
2025-12-17 09:32:44 -08:00
committed by Alex
parent 723ca13482
commit 451eb0806a
295 changed files with 1592 additions and 2009 deletions
+16 -16
View File
@@ -16,25 +16,26 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "proc_launcher.h"
#include "common/global_define.h"
#include "common/types.h"
#include <string>
#include <vector>
#include "global_define.h"
#include "types.h"
#include "proc_launcher.h"
#ifdef _WINDOWS
#include <windows.h>
#include <windows.h>
#else
#include <sys/types.h>
#include <sys/wait.h>
#include <signal.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <signal.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#endif
ProcLauncher ProcLauncher::s_launcher;
@@ -353,4 +354,3 @@ ProcLauncher::Spec &ProcLauncher::Spec::operator=(const Spec &other) {
logFile = other.logFile;
return(*this);
}