diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2004-07-30 00:53:49 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2004-07-30 00:53:49 +0000 |
commit | 286aff1fe6c2d5d45ed96d34aa8ba2575c89e561 (patch) | |
tree | 46fd147ed2ed43d5353bbe71c0435c3e0c16a731 /src | |
parent | a8faa974c466dafb12a8cfbd109bcf61e59b062b (diff) | |
download | coreutils-286aff1fe6c2d5d45ed96d34aa8ba2575c89e561.tar.xz |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/checksum.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/checksum.h b/src/checksum.h index f3978bdfb..90d75b651 100644 --- a/src/checksum.h +++ b/src/checksum.h @@ -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 }; |