1. 29 Jan, 2016 16 commits
  2. 28 Jan, 2016 15 commits
  3. 27 Jan, 2016 8 commits
  4. 26 Jan, 2016 1 commit
    • Rich Salz's avatar
      Remove /* foo.c */ comments · 34980760
      Rich Salz authored
      
      
      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: default avatarViktor Dukhovni <viktor@openssl.org>
      34980760