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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [c_ptr_tests_driver.c] - Rev 858

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

/* this is the driver for c_ptr_test.f03 */
 
typedef struct services
{
   int compId;
   void *globalServices;
}services_t;
 
typedef struct comp
{
   void *myServices;
   void (*setServices)(struct comp *self, services_t *myServices);
   void *myPort;
}comp_t;
 
/* prototypes for f90 functions */
void sub0(comp_t *self, services_t *myServices);
 
int main(int argc, char **argv)
{
   services_t servicesObj;
   comp_t myComp;
 
   servicesObj.compId = 17;
   servicesObj.globalServices = 0; /* NULL; */
   myComp.myServices = &servicesObj;
   myComp.setServices = 0; /* NULL; */
   myComp.myPort = 0; /* NULL; */
 
   sub0(&myComp, &servicesObj);
 
   return 0;
}/* end main() */
 
 

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.