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/idea | |
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/idea')
-rw-r--r-- | crypto/idea/i_cbc.c | 1 | ||||
-rw-r--r-- | crypto/idea/i_cfb64.c | 1 | ||||
-rw-r--r-- | crypto/idea/i_ecb.c | 1 | ||||
-rw-r--r-- | crypto/idea/i_ofb64.c | 1 | ||||
-rw-r--r-- | crypto/idea/i_skey.c | 1 | ||||
-rw-r--r-- | crypto/idea/idea_lcl.h | 1 |
6 files changed, 0 insertions, 6 deletions
diff --git a/crypto/idea/i_cbc.c b/crypto/idea/i_cbc.c index 950df98c95..e1c5b2d719 100644 --- a/crypto/idea/i_cbc.c +++ b/crypto/idea/i_cbc.c @@ -1,4 +1,3 @@ -/* crypto/idea/i_cbc.c */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * diff --git a/crypto/idea/i_cfb64.c b/crypto/idea/i_cfb64.c index a1547ed5d7..557cd4d2ac 100644 --- a/crypto/idea/i_cfb64.c +++ b/crypto/idea/i_cfb64.c @@ -1,4 +1,3 @@ -/* crypto/idea/i_cfb64.c */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * diff --git a/crypto/idea/i_ecb.c b/crypto/idea/i_ecb.c index 4ed206ecd1..c018c1504f 100644 --- a/crypto/idea/i_ecb.c +++ b/crypto/idea/i_ecb.c @@ -1,4 +1,3 @@ -/* crypto/idea/i_ecb.c */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * diff --git a/crypto/idea/i_ofb64.c b/crypto/idea/i_ofb64.c index aa5948801b..64f128eff4 100644 --- a/crypto/idea/i_ofb64.c +++ b/crypto/idea/i_ofb64.c @@ -1,4 +1,3 @@ -/* crypto/idea/i_ofb64.c */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * diff --git a/crypto/idea/i_skey.c b/crypto/idea/i_skey.c index 2bbd43a5e1..c30547795f 100644 --- a/crypto/idea/i_skey.c +++ b/crypto/idea/i_skey.c @@ -1,4 +1,3 @@ -/* crypto/idea/i_skey.c */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * diff --git a/crypto/idea/idea_lcl.h b/crypto/idea/idea_lcl.h index ffb06a146f..9be76cdc53 100644 --- a/crypto/idea/idea_lcl.h +++ b/crypto/idea/idea_lcl.h @@ -1,4 +1,3 @@ -/* crypto/idea/idea_lcl.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * |