Don't include config.h, sys/types.h, stdio.h: not needed.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 30 Jul 2004 00:53:49 +0000 (00:53 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 30 Jul 2004 00:53:49 +0000 (00:53 +0000)
(ALG_UNSPECIFIED): Remove.
(ALG_MDT): Don't make it equal to CHAR_MAX + 1; this isn't necessary.

src/checksum.h

index f3978bdfbbc85c066d5287b6794279eb138ed8d0..90d75b65178cc9810dd59548f1d4bc2e421024bf 100644 (file)
@@ -1,14 +1,6 @@
-#include <config.h>
-
-#include <sys/types.h>
-#include <stdio.h>
-
-/* For long options that have no equivalent short option, use a
-   non-character as a pseudo short option, starting with CHAR_MAX + 1.  */
 enum
 {
-  ALG_UNSPECIFIED = 0,
-  ALG_MD5 = CHAR_MAX + 1,
+  ALG_MD5,
   ALG_SHA1
 };