home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / l / l920413.zip / VERS.C < prev   
Text File  |  1992-04-13  |  339b  |  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.