From: Paul Eggert Date: Fri, 30 Jul 2004 00:53:49 +0000 (+0000) Subject: Don't include config.h, sys/types.h, stdio.h: not needed. X-Git-Tag: v5.3.0~1020 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=286aff1fe6c2d5d45ed96d34aa8ba2575c89e561;p=thirdparty%2Fcoreutils.git 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. --- 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 };