Run clang-format on all files

The main change here is to reorder headers.
This commit is contained in:
ridiculousfish
2019-10-13 15:50:48 -07:00
parent e73e9c3e2e
commit 82eca4bc86
110 changed files with 250 additions and 171 deletions

View File

@@ -1,9 +1,12 @@
// Functions for waiting for processes completed.
#include "builtin_wait.h"
#include <sys/wait.h>
#include <algorithm>
#include <vector>
#include "builtin.h"
#include "builtin_wait.h"
#include "common.h"
#include "parser.h"
#include "proc.h"
@@ -11,8 +14,6 @@
#include "wgetopt.h"
#include "wutil.h"
#include <sys/wait.h>
/// Return the job id to which the process with pid belongs.
/// If a specified process has already finished but the job hasn't, parser_t::job_get_from_pid()
/// doesn't work properly, so use this function in wait command.