vaxlib.c 344 B

123456789101112131415161718192021222324252627
  1. /* Subroutines needed by Vax code produced by the GNU compiler. */
  2. /* Compile this file with the Unix C compiler! */
  3. umulsi3 (a, b)
  4. unsigned a, b;
  5. {
  6. return a * b;
  7. }
  8. udivsi3 (a, b)
  9. unsigned a, b;
  10. {
  11. return a / b;
  12. }
  13. umodsi3 (a, b)
  14. unsigned a, b;
  15. {
  16. return a % b;
  17. }
  18. lshrsi3 (a, b)
  19. unsigned a, b;
  20. {
  21. return a >> b;
  22. }