From: Keith Packard Date: Sun, 9 Sep 2012 20:43:45 +0000 (-0700) Subject: altos: include ao_arch_funcs.h at the very end of ao.h X-Git-Tag: 1.1~25 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=ced6a020d6d94b1c63837a7ab5b0091b7b8ea3c9 altos: include ao_arch_funcs.h at the very end of ao.h Move it below the definition of the ms5607 init function Signed-off-by: Keith Packard --- diff --git a/src/core/ao.h b/src/core/ao.h index 4f4779ec..31ec4686 100644 --- a/src/core/ao.h +++ b/src/core/ao.h @@ -22,7 +22,7 @@ #include #include #include -#include "ao_pins.h" +#include #include #define TRUE 1 @@ -981,12 +981,12 @@ ao_sqrt(uint32_t op); int32_t ao_freq_to_set(int32_t freq, int32_t cal) __reentrant; -#include - /* * ao_ms5607.c */ void ao_ms5607_init(void); +#include + #endif /* _AO_H_ */