blob: 5ca046f52d45a51ae389fa5af03ad139c58ea860 [file] [log] [blame]
#include <unistd.h>
void
hello ()
{
char *hello = "Hello \\\"!\r\n";
int i;
for (i = 0; hello[i]; i++)
write (1, hello + i, 1);
}
int
main ()
{
hello ();
} /* after-hello */