md5import.c 275 B

123456789101112131415
  1. #ifndef _GNU_SOURCE
  2. #define _GNU_SOURCE
  3. #endif
  4. #include <stdlib.h>
  5. #if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
  6. #define HAS_STDINT_H
  7. #else
  8. typedef unsigned int my_uint32_t;
  9. #undef uint32_t
  10. #define uint32_t my_uint32_t
  11. #endif
  12. #include "md5.c"
  13. #undef uint32_t