OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [binutils-2.18.50/] [ld/] [testsuite/] [ld-elf/] [init.c] - Rev 853

Go to most recent revision | Compare with Previous | Blame | View Log

#include <stdio.h>
 
static void
init_0 (void)
{
  printf ("init array 0\n");
}
 
static void
init_1 (void)
{
  printf ("init array 1\n");
}
 
static void
init_2 (void)
{
  printf ("init array 2\n");
}
 
void (*const init_array []) (void)
     __attribute__ ((section (".init_array"),
		     aligned (sizeof (void *)))) =
{
  &init_0,
  &init_1,
  &init_2
};
 
int
main (void)
{
  return 0;
}
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.