home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / c / amivogl-1.03.lzh / vogl / src / sunfort / fpref.c.Z / fpref.c
Encoding:
C/C++ Source or Header  |  1991-06-03  |  498 b   |  42 lines

  1. #include "vogl.h"
  2.  
  3. /*
  4.  * prefposition_
  5.  */
  6. void
  7. prefposition_(a, b, c, d)
  8.     int    *a, *b, *c, *d;
  9. {
  10.     prefposition((long)*a, (long)*b, (long)*c, (long)*d);
  11. }
  12.  
  13. /*
  14.  * prefpo_    (same as prefposition_)
  15.  */
  16. void
  17. prefpo_(a, b, c, d)
  18.     int    *a, *b, *c, *d;
  19. {
  20.     prefposition((long)*a, (long)*b, (long)*c, (long)*d);
  21. }
  22.  
  23. /*
  24.  * prefsize_
  25.  */
  26. void
  27. prefsize_(x, y)
  28.     int    *x, *y;
  29. {
  30.     prefsize((long)*x, (long)*y);
  31. }
  32.  
  33. /*
  34.  * prefsi_    (same as prefsize_)
  35.  */
  36. void
  37. prefsi_(x, y)
  38.     int    *x, *y;
  39. {
  40.     prefsize((long)*x, (long)*y);
  41. }
  42.