~ubuntu-branches/ubuntu/raring/avr-libc/raring-proposed

« back to all changes in this revision

Viewing changes to tests/simulate/regression/20080405-eeprom.c

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2008-08-10 09:59:16 UTC
  • mfrom: (1.1.7 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080810095916-wwyigh3vt0e9s7ud
Tags: 1:1.6.2.cvs20080610-2
Added build-depends on texlive-extra-utils (closes: #493454)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Support of the .eeprom section by 'runtest.sh'.
 
2
   $Id: 20080405-eeprom.c,v 1.1.2.2 2008/04/05 10:38:22 dmix Exp $      */
 
3
 
 
4
#ifdef  __AVR__
 
5
# include <avr/eeprom.h>
 
6
#else
 
7
# define EEMEM
 
8
#endif
 
9
 
 
10
EEMEM char e[10];
 
11
 
 
12
int main ()
 
13
{
 
14
    return 0;
 
15
}