File: 20080405-eeprom.c

package info (click to toggle)
avr-libc 1%3A1.6.2.cvs20080610-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 14,848 kB
  • ctags: 55,619
  • sloc: ansic: 92,267; asm: 6,692; sh: 4,131; makefile: 2,481; python: 976; pascal: 426; perl: 116
file content (15 lines) | stat: -rw-r--r-- 240 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Support of the .eeprom section by 'runtest.sh'.
   $Id: 20080405-eeprom.c,v 1.1.2.2 2008/04/05 10:38:22 dmix Exp $	*/

#ifdef	__AVR__
# include <avr/eeprom.h>
#else
# define EEMEM
#endif

EEMEM char e[10];

int main ()
{
    return 0;
}