4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-22 15:07:43 +08:00
Jeff Law 7a45daad91 Re: libgloss c99 fixes for mn10300-elf
Very similar to other patches in this space.  Avoid implicit int types and add
missing #includes so that this code works with gcc-14.
2023-12-21 00:01:54 -07:00

42 lines
512 B
C

#include <stdio.h>
#include <unistd.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 < 1000000; i++)
;
}
int
main(int argc, char *argv[])
{
int i, j;
for (i = 0; i < 10; i++)
{
send_msg1 ();
delay ();
send_msg2 ();
}
return 0;
}