aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric <ewild@sysmocom.de>2020-07-01 18:25:17 +0200
committerEric <ewild@sysmocom.de>2020-08-26 17:35:18 +0200
commit2336ff6540bef1add8003fdd970e446b298e2e1f (patch)
tree33c83d5c8238da7da6cdc9aad743348fac9fd84f
parent2016e46064c3507bc00809121df26a94948bf1a8 (diff)
ipc: device, reorder includes
-rw-r--r--Transceiver52M/device/ipc/IPCDevice.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/Transceiver52M/device/ipc/IPCDevice.cpp b/Transceiver52M/device/ipc/IPCDevice.cpp
index 0150eff..2ddeca2 100644
--- a/Transceiver52M/device/ipc/IPCDevice.cpp
+++ b/Transceiver52M/device/ipc/IPCDevice.cpp
@@ -18,12 +18,10 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <stdint.h>
-#include <string.h>
-#include <stdlib.h>
-#include <sys/mman.h>
-#include <sys/stat.h> /* For mode constants */
-#include <fcntl.h> /* For O_* constants */
+#include <cstdint>
+#include <cstring>
+#include <cstdlib>
+
#include <map>
@@ -34,6 +32,10 @@
#include "IPCDevice.h"
extern "C" {
+#include <sys/mman.h>
+#include <sys/stat.h> /* For mode constants */
+#include <fcntl.h> /* For O_* constants */
+
#include "osmo_signal.h"
#include <osmocom/core/application.h>
#include <osmocom/core/talloc.h>