File: md5import.c

package info (click to toggle)
polipo 0.9.12-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 920 kB
  • ctags: 1,249
  • sloc: ansic: 16,675; sh: 195; makefile: 77
file content (11 lines) | stat: -rw-r--r-- 227 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#include <stdlib.h>

#if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
#define HAS_STDINT_H
#else
typedef unsigned int my_uint32_t;
#undef uint32_t
#define uint32_t my_uint32_t
#endif
#include "md5.c"
#undef uint32_t