diff options
author | Rich Salz <rsalz@akamai.com> | 2015-12-18 18:57:23 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-01-26 22:40:43 +0100 |
commit | 349807608f31b20af01a342d0072bb92e0b036e2 (patch) | |
tree | f937ebb9a6b53c3f7d6636e67d7e3a3398ccf34a /crypto/md5 | |
parent | SHARED_LIBS_LINK_EXTS is no longer used, remove it completely (diff) | |
download | openssl-349807608f31b20af01a342d0072bb92e0b036e2.tar.xz openssl-349807608f31b20af01a342d0072bb92e0b036e2.zip |
Remove /* foo.c */ comments
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>
Diffstat (limited to 'crypto/md5')
-rw-r--r-- | crypto/md5/md5_dgst.c | 1 | ||||
-rw-r--r-- | crypto/md5/md5_locl.h | 1 | ||||
-rw-r--r-- | crypto/md5/md5_one.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/crypto/md5/md5_dgst.c b/crypto/md5/md5_dgst.c index f73ca7c07c..18a3262d23 100644 --- a/crypto/md5/md5_dgst.c +++ b/crypto/md5/md5_dgst.c @@ -1,4 +1,3 @@ -/* crypto/md5/md5_dgst.c */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * diff --git a/crypto/md5/md5_locl.h b/crypto/md5/md5_locl.h index 22ae9b3e34..f2d80a035c 100644 --- a/crypto/md5/md5_locl.h +++ b/crypto/md5/md5_locl.h @@ -1,4 +1,3 @@ -/* crypto/md5/md5_locl.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * diff --git a/crypto/md5/md5_one.c b/crypto/md5/md5_one.c index 4ac882e739..9771dcfe29 100644 --- a/crypto/md5/md5_one.c +++ b/crypto/md5/md5_one.c @@ -1,4 +1,3 @@ -/* crypto/md5/md5_one.c */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * |