blob: e40d2b3198a60eca11722a26cb5d2496435645a1 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From c21f77d592415f316138c05f581192a1f061e735 Mon Sep 17 00:00:00 2001
Brad Bishopd7bf8c12018-02-25 22:55:05 -05002From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 15 Sep 2017 10:09:03 -0700
4Subject: [PATCH] immpbe_dump.cc: Use sys/wait.h instead of wait.h
5
6Fixes
7redirecting incorrect #include <wait.h> to <sys/wait.h>
8
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080010
Brad Bishopd7bf8c12018-02-25 22:55:05 -050011---
12 src/imm/common/immpbe_dump.cc | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/src/imm/common/immpbe_dump.cc b/src/imm/common/immpbe_dump.cc
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080016index e6b3cc5..3956028 100644
Brad Bishopd7bf8c12018-02-25 22:55:05 -050017--- a/src/imm/common/immpbe_dump.cc
18+++ b/src/imm/common/immpbe_dump.cc
19@@ -26,12 +26,12 @@
20 #include <stdlib.h>
21 #include <stdio.h>
22 #include <time.h>
23-#include <wait.h>
24 #include <unistd.h>
25 #include <iostream>
26 #include <sstream>
27 #include <stdint.h>
28 #include <sys/stat.h>
29+#include <sys/wait.h>
30 #include <libgen.h>
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080031 #include <set>
32 #include <vector>