Rocco Rutte:
[apps/madmutt.git] / crypthash.h
index d8e3a57..ab2234e 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * 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
 
 /* 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