[include] fix a few includes

This commit is contained in:
Travis Geiselbrecht
2015-04-15 18:59:23 -07:00
parent c32a4cba8d
commit 4247c30a8b
3 changed files with 3 additions and 1 deletions

View File

@@ -24,6 +24,7 @@
#define __APP_H
#include <stddef.h>
#include <compiler.h>
/* app support api */
void apps_init(void); /* one time setup */

View File

@@ -23,7 +23,7 @@
#ifndef __REG_H
#define __REG_H
#include <sys/types.h>
#include <stdint.h>
/* low level macros for accessing memory mapped hardware registers */
#define REG64(addr) ((volatile uint64_t *)(uintptr_t)(addr))

View File

@@ -26,6 +26,7 @@
#include <compiler.h>
#include <debug.h>
#include <printf.h>
#include <sys/types.h>
__BEGIN_CDECLS