You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

strdup.h 325 B

12345678910111213
  1. #ifndef __STRDUP_H_COMPAT__
  2. #define __STRDUP_H_COMPAT__
  3. #include "../config.h"
  4. #if !defined(HAVE_STRDUP) && defined(_MSC_VER)
  5. /* MSC has the version as _strdup */
  6. # define strdup _strdup
  7. #elif !defined(HAVE_STRDUP)
  8. # error You do not have strdup on your system.
  9. #endif /* HAVE_STRDUP */
  10. #endif /* __STRDUP_H_COMPAT__ */