diff options
author | Keith Packard <keithp@keithp.com> | 2012-09-09 13:43:45 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-09-09 13:43:45 -0700 |
commit | ced6a020d6d94b1c63837a7ab5b0091b7b8ea3c9 (patch) | |
tree | 5ead26398e294ee2a72899942fac758864718697 /src | |
parent | e053da3e7cb5a4c9ebbffd245cb5d83932183b22 (diff) |
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 <keithp@keithp.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ao.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 <stdio.h> #include <string.h> #include <stddef.h> -#include "ao_pins.h" +#include <ao_pins.h> #include <ao_arch.h> #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_arch_funcs.h> - /* * ao_ms5607.c */ void ao_ms5607_init(void); +#include <ao_arch_funcs.h> + #endif /* _AO_H_ */ |