altos: Replace ao_xmem functions with direct mem calls
[fw/altos] / src / kernel / ao_ee_fake.c
index cef0a4381e7e685f0df98a8f9726781c44c44683..f5e195adc18b1a5cca6219d0370c39e277cc038a 100644 (file)
@@ -33,6 +33,6 @@ ao_ee_write_config(uint8_t *buf, uint16_t len)
 uint8_t
 ao_ee_read_config(uint8_t *buf, uint16_t len) 
 {
-       ao_xmemset(buf, '\0', len);
+       memset(buf, '\0', len);
        return 1;
 }