codybartfast / knr

Exercises from The C Programming Language
MIT License
9 stars 4 forks source link

Use static for 'private' declarations #6

Closed codybartfast closed 4 years ago

codybartfast commented 4 years ago

Is this used? Consider adding static to functions you only intend to use in this C file so the compiler can tell you it's unused.

Originally posted by @klampworks in https://github.com/codybartfast/knr/pull/2

codybartfast commented 4 years ago

done