#ifndef AVR_IO
#   define  ADTS2  2
#   define  ADTS1  1
#   define  ADTS0  0
typedef unsigned int uint8_t __attribute__((__mode__(__QI__)));
#else
#   include "avr/io.h"
#endif



int main(void)
{  
  // ADCSRB&=~(1<<ADTS2,1<<ADTS1,1<<ADTS0);
  (*(volatile uint8_t *)(0x7B))&=~(1<<ADTS2,1<<ADTS1,1<<ADTS0);

  int mm=0;
  mm&=~(1<<ADTS2,1<<ADTS1,1<<ADTS0);

  return 0;
}



// avr-gcc --version


// avr-g++ --version

 
// avr-g++ -c -mmcu=atmega128rfa1 -pedantic -Wall -o weg.o weg.c


// avr-gcc -c -mmcu=atmega128rfa1 -pedantic -Wall -o weg.o weg.c

 
// avr-g++ -c -mmcu=atmega128rfa1 -pedantic -Wall -DAVR_IO=1 -o weg.o weg.c
//            >>>>>>>>>> Das geht ohne Warnung <<<<<<<


// avr-gcc -c -mmcu=atmega128rfa1 -pedantic -Wall -DAVR_IO=1 -o weg.o weg.c