home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / programm / language / libauto_.lha / vers.c < prev   
Encoding:
C/C++ Source or Header  |  1992-04-14  |  339 b   |  12 lines

  1. /* define default version symbols to be just one symbol. That way, we don't
  2.  * blow up dataspace for symbols that aren't really used */
  3.  
  4. #define MSTRING(x) STRING(x)
  5. #define STRING(x) #x
  6.  
  7. #define INDIRECT(name) \
  8.   asm (".stabs \"_" STRING(name) "\",11,0,0,0"); \
  9.   asm (".stabs \"___auto_generic_vers\",1,0,0,0");
  10.  
  11. INDIRECT(LIBRARY_VERS)
  12.