File: test.c

package info (click to toggle)
newlib 4.6.0.20260123-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 69,060 kB
  • sloc: ansic: 510,811; asm: 53,339; makefile: 52,993; sh: 12,369; perl: 2,902; cpp: 1,280; python: 999; lisp: 720; exp: 359; pascal: 47; xml: 40
file content (16 lines) | stat: -rw-r--r-- 225 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extern int outbyte(unsigned char byte);
extern void print (const char *);

int main()
{
  outbyte ('&');
  outbyte ('@');
  outbyte ('$');
  outbyte ('%');

  /* whew, we made it */
  
  print ("\r\nDone...");

  return 0;
}