diff --git a/include/stratosphere/ipc.hpp b/include/atmosphere/common.hpp
similarity index 85%
rename from include/stratosphere/ipc.hpp
rename to include/atmosphere/common.hpp
index 09cdf25f..6a87be4f 100644
--- a/include/stratosphere/ipc.hpp
+++ b/include/atmosphere/common.hpp
@@ -15,8 +15,8 @@
*/
#pragma once
-
-#include "ipc/ipc_service_object.hpp"
-#include "ipc/ipc_serialization.hpp"
-
-#include "ipc/ipc_service_session.hpp"
\ No newline at end of file
+#include "common_includes.hpp"
+#include "defines.hpp"
+#include "util.hpp"
+#include "results.hpp"
+#include "svc.hpp"
diff --git a/include/atmosphere/common_includes.hpp b/include/atmosphere/common_includes.hpp
new file mode 100644
index 00000000..fec9205c
--- /dev/null
+++ b/include/atmosphere/common_includes.hpp
@@ -0,0 +1,52 @@
+/*
+ * Copyright (c) 2018-2019 Atmosphère-NX
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms and conditions of the GNU General Public License,
+ * version 2, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+
+#pragma once
+
+/* C headers. */
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+/* C++ headers. */
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include