blob: b580ea933c7f34167a788c415df9aefa8a499106 (
plain)
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;
}
|