20000317 sourceware import

This commit is contained in:
Ranjith Kumaran
2000-03-17 22:48:54 +00:00
parent fae4c299f1
commit 03261851a1
420 changed files with 66815 additions and 0 deletions

40
libgloss/mn10200/test.c Normal file
View File

@ -0,0 +1,40 @@
#include <stdio.h>
#include <string.h>
static void
send_msg1 (void)
{
static char msg[] = "Hello World\r\n";
write(1, msg, strlen (msg));
}
static void
send_msg2 (void)
{
static char msg[] = "Goodnight Irene\r\n";
write(1, msg, strlen (msg));
}
static void
delay (void)
{
int i;
for (i = 0; i < 32000; i++)
;
}
int
main(int argc, char *argv[])
{
int i, j;
for (i = 0; i < 10; i++)
{
send_msg1 ();
delay ();
send_msg2 ();
}
return 0;
}