summaryrefslogtreecommitdiffstats
path: root/crypto/ebcdic.c
AgeCommit message (Collapse)Author
2017-10-13Remove email addresses from source code.Rich Salz
Names were not removed. Some comments were updated. Replace Andy's address with openssl.org Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/4516)
2016-05-17Copyright consolidation 05/10Rich Salz
Reviewed-by: Richard Levitte <levitte@openssl.org>
2016-04-29Add the ability to test EBCDIC buildsMatt Caswell
This adds the define CHARSET_EBCDIC_TEST which enables testing of EBCDIC code on an ASCII system. Reviewed-by: Andy Polyakov <appro@openssl.org>
2016-04-29Fix building with -DCHARSET_EBCDICMatt Caswell
Building with -DCHARSET_EBCDIC and using --strict-warnings resulted in lots of miscellaneous errors. This fixes it. Reviewed-by: Andy Polyakov <appro@openssl.org>
2016-02-09Use NON_EMPTY_TRANSLATION_UNIT, consistently.Rich Salz
This also closes RT 4123 Reviewed-by: Richard Levitte <levitte@openssl.org>
2016-02-05GH601: Various spelling fixes.FdaSilvaYY
Signed-off-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org>
2016-01-26Remove /* foo.c */ commentsRich Salz
This was done by the following find . -name '*.[ch]' | /tmp/pl where /tmp/pl is the following three-line script: print unless $. == 1 && m@/\* .*\.[ch] \*/@; close ARGV if eof; # Close file to reset $. And then some hand-editing of other files. Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
2015-04-04Appease clang -Wempty-translation-unitRichard Levitte
ebcdic.c:284:7: warning: ISO C requires a translation unit to contain at least one declaration [-Wempty-translation-unit] ^ 1 warning generated. Reviewed-by: Rich Salz <rsalz@openssl.org>
2015-01-22Run util/openssl-format-source -v -c .Matt Caswell
Reviewed-by: Tim Hudson <tjh@openssl.org>
2015-01-22Further comment changes for reformat (master)Matt Caswell
Reviewed-by: Tim Hudson <tjh@openssl.org>
2003-10-29Oops, this file already had the "empty source file" workaround but itGeoff Thorpe
requires -DPEDANTIC and was hidden at the bottom of the file. This moves it to the top and removes the redundant declaration.
2003-10-29Avoid "empty source file" warnings.Geoff Thorpe
2002-07-16The default C compiler on MacOS X doesn't like empty object filesRichard Levitte
2002-02-20Instead of just checking for OpenVMS, check if DEC C is used, since it's asRichard Levitte
picky on all platforms
2001-02-20DEC C on VMS is pedantic by definition.Richard Levitte
2000-02-03Add new -notext option to 'ca', -pubkey option to spkac.Dr. Stephen Henson
Remove some "WTF??" casts from applications. Fixes to keep VC++ happy and avoid warnings. Docs tidy.
2000-02-01EBCDIC support.Ulf Möller
Submitted by: Martin Kraemer <martin.kraemer@mch.sni.de>