(file) Return to Platform_ZOS_ZSERIES_IBM.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/Platform_ZOS_ZSERIES_IBM.h between version 1.25.2.2 and 1.27

version 1.25.2.2, 2006/08/02 07:26:35 version 1.27, 2006/08/22 17:33:17
Line 105 
Line 105 
 // to avoid lots of ifdefs for z/OS // to avoid lots of ifdefs for z/OS
 #define pthread_getspecific(x) pthread_getspecific_d8_np(x); #define pthread_getspecific(x) pthread_getspecific_d8_np(x);
  
   // use my own snprintf implementation using sprintf mapping
   // until the Java SDK is fixed to work with _ISOC99_SOURCE
   inline int snprintf(char *sptr, size_t len, const char* form, ...)
   {
       int returnvalue;
       va_list arguments;
       va_start(arguments, form);
       returnvalue = vsprintf(sptr, form, arguments);
       va_end(arguments);
       return returnvalue;
   }
   
 #endif /* Pegasus_Platform_ZOS_ZSERIES_IBM_h */ #endif /* Pegasus_Platform_ZOS_ZSERIES_IBM_h */


Legend:
Removed from v.1.25.2.2  
changed lines
  Added in v.1.27

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2