shithub: rgbds

Download patch

ref: 91b65c9380bcfadc96a1fab304f0a55a53d65e75
parent: 18c47843f1c4ed3e9c480559bccf5f8a059ddd97
author: ISSOtm <[email protected]>
date: Thu Feb 13 10:57:27 EST 2020

Add include guards and license header to section.h

--- a/include/asm/section.h
+++ b/include/asm/section.h
@@ -1,4 +1,14 @@
+/*
+ * This file is part of RGBDS.
+ *
+ * Copyright (c) 2020, Carsten Sorensen and RGBDS contributors.
+ *
+ * SPDX-License-Identifier: MIT
+ */
 
+#ifndef RGBDS_SECTION_H
+#define RGBDS_SECTION_H
+
 #include <stdint.h>
 
 #include "linkdefs.h"
@@ -44,3 +54,5 @@
 
 void out_PushSection(void);
 void out_PopSection(void);
+
+#endif