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

  1. #include "vogl.h"
  2.  
  3. /*
  4.  * pushattributes_
  5.  */
  6. void
  7. pushattributes_()
  8. {
  9.     pushattributes();
  10. }
  11.  
  12. /*
  13.  * pushat_    (same as pushattributes_)
  14.  */
  15. void
  16. pushat_()
  17. {
  18.     pushattributes();
  19. }
  20.  
  21. /*
  22.  * popattributes_
  23.  */
  24. void
  25. popattributes_()
  26. {
  27.     popattributes();
  28. }
  29.  
  30. /*
  31.  * popatt_    (same as popattributes_)
  32.  */
  33. void
  34. popatt_()
  35. {
  36.     popattributes();
  37. }
  38.