altos: include ao_arch_funcs.h at the very end of ao.h
authorKeith Packard <keithp@keithp.com>
Sun, 9 Sep 2012 20:43:45 +0000 (13:43 -0700)
committerKeith Packard <keithp@keithp.com>
Sun, 9 Sep 2012 20:43:45 +0000 (13:43 -0700)
Move it below the definition of the ms5607 init function

Signed-off-by: Keith Packard <keithp@keithp.com>
src/core/ao.h

index 4f4779ecdef288d79ea920970e5a7bc67ed4eeec..31ec468695dc436e90176d9a53252c9688a8d872 100644 (file)
@@ -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_ */