diff options
| -rw-r--r-- | examples/standalone/atmel_df_pow2.c | 1 | ||||
| -rw-r--r-- | examples/standalone/stubs.c | 1 | ||||
| -rw-r--r-- | include/exports.h | 5 | 
3 files changed, 3 insertions, 4 deletions
| diff --git a/examples/standalone/atmel_df_pow2.c b/examples/standalone/atmel_df_pow2.c index b5b450317..2e14aba39 100644 --- a/examples/standalone/atmel_df_pow2.c +++ b/examples/standalone/atmel_df_pow2.c @@ -8,6 +8,7 @@  #include <common.h>  #include <exports.h> +#include <spi.h>  #define CMD_ID    0x9f  #define CMD_STAT  0xd7 diff --git a/examples/standalone/stubs.c b/examples/standalone/stubs.c index 11c756525..a6add6abc 100644 --- a/examples/standalone/stubs.c +++ b/examples/standalone/stubs.c @@ -1,3 +1,4 @@ +#include <common.h>  #include <exports.h>  #ifndef GCC_VERSION diff --git a/include/exports.h b/include/exports.h index 94925664e..63aa4b264 100644 --- a/include/exports.h +++ b/include/exports.h @@ -3,8 +3,6 @@  #ifndef __ASSEMBLY__ -#include <common.h> -  /* These are declarations of exported functions available in C code */  unsigned long get_version(void);  int  getc(void); @@ -12,7 +10,7 @@ int  tstc(void);  void putc(const char);  void puts(const char*);  int printf(const char* fmt, ...); -void install_hdlr(int, interrupt_handler_t*, void*); +void install_hdlr(int, void (*interrupt_handler_t)(void *), void*);  void free_hdlr(int);  void *malloc(size_t);  void free(void*); @@ -30,7 +28,6 @@ int ustrtoul(const char *cp, char **endp, unsigned int base);  int i2c_write (uchar, uint, int , uchar* , int);  int i2c_read (uchar, uint, int , uchar* , int);  #endif -#include <spi.h>  void app_startup(char * const *); |