aboutsummaryrefslogtreecommitdiff
path: root/include/openssl/ebcdic.h
AgeCommit message (Collapse)AuthorFilesLines
2016-06-04Change inclusion of sys/types.h to stdlib.h in include/openssl/ebcdic.hRichard Levitte1-1/+1
Needed to get size_t on Windows Reviewed-by: Rich Salz <rsalz@openssl.org>
2016-05-17Copyright consolidation 03/10Rich Salz1-0/+8
Reviewed-by: Richard Levitte <levitte@openssl.org>
2016-01-26Remove /* foo.c */ commentsRich Salz1-1/+0
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-03-31Stop symlinking, move files to intended directoryRichard Levitte1-0/+26
Rather than making include/openssl/foo.h a symlink to crypto/foo/foo.h, this change moves the file to include/openssl/foo.h once and for all. Likewise, move crypto/foo/footest.c to test/footest.c, instead of symlinking it there. Originally-by: Geoff Thorpe <geoff@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>