On Fri, Dec 19, 2014 at 8:22 PM, Theo de Raadt <dera...@cvs.openbsd.org> wrote:
> whereas ntp.org's codebase is reportedly 100,000 lines of > unknown or largely unused code > That made me curious. Is it that bloated? $ for i in $(find . -name "*.[ch]"); do cat $i >> allcode; done $ egrep -v '[:blank:]*/?\*' allcode | grep -v "^ *$" | wc -l 192870 This is ntp-4.2.8 A rough estimate but close enough if we are comparing to a know solution that is <5000. Keep up the good work. Tim.