home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s196 / 2.img / FICTION.CPP < prev    next >
Encoding:
Text File  |  1991-08-13  |  1.1 KB  |  26 lines

  1. //  Fictional function to retrieve assembly output for starting object
  2. //  oriented assembler interface routines.
  3. //  Compile line:
  4. //  bcc -c -S -ml -r FICTION
  5. //┌──────────────────────────────────────────────────────────────────────────┐
  6. //│ void pascal fiction1(long int x, long int y, long int z, float mult);    │
  7. //│                                                                          │
  8. //│ GAZINTAS:  This fictional function has three fictional GAZINTAS.         │
  9. //│ One is integer the other two are long integer.  Local variables are      │
  10. //│ calculated by declaring and initializing them.                           │
  11. //│                                                                          │
  12. //│ GAZOWTAS:  The function returns void.                                    │
  13. //│                                                                          │
  14. //└──────────────────────────────────────────────────────────────────────────┘
  15. void pascal fiction1(int x, long int y, long int z);
  16.  
  17. void pascal fiction1(int x, long int y, long int z){
  18. register int i1;
  19. register int i2;
  20. x=0;
  21. y=0;
  22. z=0;
  23. i1=0;
  24. i2=0;
  25. }
  26.