diff --git a/src/common/archives.h b/src/common/archives.h
index eef292634..993128197 100644
--- a/src/common/archives.h
+++ b/src/common/archives.h
@@ -1,3 +1,9 @@
+// Copyright 2020 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
 #include "boost/archive/binary_iarchive.hpp"
 #include "boost/archive/binary_oarchive.hpp"
 #include "boost/serialization/export.hpp"
diff --git a/src/common/construct.h b/src/common/construct.h
index aba4c7e89..4e48ee60d 100644
--- a/src/common/construct.h
+++ b/src/common/construct.h
@@ -1,4 +1,9 @@
+// Copyright 2020 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
 #pragma once
+
 #include <boost/serialization/serialization.hpp>
 
 class construct_access {
diff --git a/src/common/memory_ref.cpp b/src/common/memory_ref.cpp
index 170784ff8..300f87d58 100644
--- a/src/common/memory_ref.cpp
+++ b/src/common/memory_ref.cpp
@@ -1,3 +1,7 @@
+// Copyright 2020 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
 #include "common/archives.h"
 #include "common/memory_ref.h"
 
diff --git a/src/common/memory_ref.h b/src/common/memory_ref.h
index ae30b009c..c11beb04d 100644
--- a/src/common/memory_ref.h
+++ b/src/common/memory_ref.h
@@ -1,3 +1,7 @@
+// Copyright 2020 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
 #pragma once
 
 #include <memory>
diff --git a/src/core/global.h b/src/core/global.h
index d2e1cd97d..83bd4fc80 100644
--- a/src/core/global.h
+++ b/src/core/global.h
@@ -1,3 +1,9 @@
+// Copyright 2020 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
 namespace Core {
 
 template <class T>