]> rtime.felk.cvut.cz Git - rtems-devel.git/blob - rtems-omk-template/appdl/examples/appdl_print.c
OMK template example applications print APP_VER_ID instead of common SW_VER_ID.
[rtems-devel.git] / rtems-omk-template / appdl / examples / appdl_print.c
1 #include <stdio.h>
2
3 int main(int argc, char *argv[])
4 {
5   int i;
6   printf("%s: dynamicaly loaded code called\n", argv[0]);
7   for (i = 1; i < argc; i++) {
8     printf("%s: argument %i: %s\n", argv[0], i, argv[i]);
9   }
10   return 0;
11 }