jrincayc / ucblogo-code

Berkeley Logo interpreter
https://people.eecs.berkeley.edu/~bh/logo.html
GNU General Public License v3.0
182 stars 34 forks source link

Avoid more implicit function declarations #156

Closed fweimer-rh closed 1 year ago

fweimer-rh commented 1 year ago

Implicit funciton declarations were removed from C99, and future compilers may not support them by default because they are a type safety hazard.

This commit fixes ucblogo for the Fedora build configure, so it will continue to build with such future compilers.

Related to: