summaryrefslogtreecommitdiff
path: root/kern/percpu.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-05-30 22:16:59 +0200
committerRichard Braun <rbraun@sceen.net>2017-05-30 22:16:59 +0200
commit436fe6cb9711401fcc1f1d8fc29025f1aec5b774 (patch)
tree521e9c563f161e8faa6370372af26b3a4f5623ae /kern/percpu.c
parent4eaa58c85eec654eb8bf8e002b3f3a419f5ce16b (diff)
Move assert.h to the include directory
This turns assert.h into a standard header.
Diffstat (limited to 'kern/percpu.c')
-rw-r--r--kern/percpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/percpu.c b/kern/percpu.c
index 5e4ff827..a1f7df15 100644
--- a/kern/percpu.c
+++ b/kern/percpu.c
@@ -15,12 +15,12 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <assert.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
-#include <kern/assert.h>
#include <kern/error.h>
#include <kern/init.h>
#include <kern/macros.h>