From 286aff1fe6c2d5d45ed96d34aa8ba2575c89e561 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 30 Jul 2004 00:53:49 +0000 Subject: [PATCH] Don't include config.h, sys/types.h, stdio.h: not needed. (ALG_UNSPECIFIED): Remove. (ALG_MDT): Don't make it equal to CHAR_MAX + 1; this isn't necessary. --- src/checksum.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/checksum.h b/src/checksum.h index f3978bdfbb..90d75b6517 100644 --- a/src/checksum.h +++ b/src/checksum.h @@ -1,14 +1,6 @@ -#include - -#include -#include - -/* 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 }; -- 2.47.2