mutt stable branch with some hacks
at master 17 lines 267 B view raw
1#ifndef _CRYPTHASH_H 2# define _CRYPTHASH_H 3 4 5# include <sys/types.h> 6# if HAVE_INTTYPES_H 7# include <inttypes.h> 8# else 9# if HAVE_STDINT_H 10# include <stdint.h> 11# endif 12# endif 13 14/* POINTER defines a generic pointer type */ 15typedef unsigned char *POINTER; 16 17#endif