* device/include/asm/pic16/features.h,
[fw/sdcc] / device / include / pic16 / adc.h
index ce1e9f8d799424bab0d5d93a6600a44cbd208178..b36fc2319610fe3ab8fdbd9999b2fd4402f499da 100644 (file)
@@ -89,12 +89,12 @@ void adc_close(void);
 void adc_conv(void);
 
 /* return 1 if AD is performing a conversion, 0 if done */
-char adc_busy(void) _naked;
+char adc_busy(void) __naked;
 
 /* get value of convertion */
-int adc_read(void) _naked;
+int adc_read(void) __naked;
 
 /* setup conversion channel */
-void adc_setchannel(unsigned char channel) _naked;
+void adc_setchannel(unsigned char channel) __naked;
 
 #endif