home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / TELECOM / stg_v4.lzh / prgname.c < prev    next >
C/C++ Source or Header  |  1994-11-11  |  309b  |  26 lines

  1. #ifdef _UNIX
  2.  
  3. #include <machine/cpu.h>
  4.  
  5. extern char **environ;
  6. char *
  7. _prgname()
  8. {
  9.     /* this is HIGHLY! unkosher and system dependant */
  10.  
  11. #ifdef SUN3_ARCH
  12.     return((char*)environ+32);
  13. #else
  14.  
  15. #ifdef SUN4C_ARCH
  16.     return((char*)environ-92);
  17. #else
  18.     return("???:");
  19. #endif
  20.  
  21. #endif
  22.  
  23. }
  24.  
  25. #endif
  26.