Rocco Rutte:
[apps/madmutt.git] / crypthash.h
index a2545b8..ab2234e 100644 (file)
@@ -1,8 +1,15 @@
+/*
+ * Copyright notice from original mutt:
+ * [none]
+ *
+ * This file is part of mutt-ng, see http://www.muttng.org/.
+ * It's licensed under the GNU General Public License,
+ * please see the file GPL in the top level source directory.
+ */
+
 #ifndef _CRYPTHASH_H
 # define _CRYPTHASH_H
 
-# include "config.h"
-
 
 # include <sys/types.h>
 # if HAVE_INTTYPES_H
 /* POINTER defines a generic pointer type */
 typedef unsigned char *POINTER;
 
-# ifndef HAVE_UINT32_T
-#  if SIZEOF_INT == 4
-typedef unsigned int uint32_t;
-#  elif SIZEOF_LONG == 4
-typedef unsigned long uint32_t;
-#  endif
-# endif
-
 #endif