home *** CD-ROM | disk | FTP | other *** search
/ vsiftp.vmssoftware.com / VSIPUBLIC@vsiftp.vmssoftware.com.tar / FREEWARE / FREEWARE40.ZIP / callmon / src / example_shr.c < prev    next >
C/C++ Source or Header  |  1996-08-06  |  795b  |  38 lines

  1. /*  CALLMON Examples
  2.  *
  3.  *  File:     EXAMPLE_SHR.C
  4.  *  Author:   Thierry Lelegard
  5.  *  Version:  1.0
  6.  *  Date:     24-JUL-1996
  7.  *
  8.  *  Abstract: Content of a shareable image. The routine receives more
  9.  *            than 6 arguments (both register and stack arguments).
  10.  */
  11.  
  12.  
  13. #include <stdio.h>
  14.  
  15.  
  16. int shr_proc (
  17.     int    a1,
  18.     double a2,
  19.     int    a3,
  20.     double a4,
  21.     int    a5,
  22.     double a6,
  23.     int    a7,
  24.     double a8,
  25.     int    a9,
  26.     double a10)
  27. {
  28.     printf ("shr_proc: a1 = %d,  a2  = %f\n"
  29.             "          a3 = %d,  a4  = %f\n"
  30.             "          a5 = %d,  a6  = %f\n"
  31.             "          a7 = %d,  a8  = %f\n"
  32.             "          a9 = %d,  a10 = %f\n"
  33.             "          return 5\n",
  34.             a1, a2, a3, a4, a5, a6, a7, a8, a9, a10);
  35.  
  36.     return 5;
  37. }
  38.