SFML / CSFML

Official binding of SFML for C
https://www.sfml-dev.org
Other
342 stars 121 forks source link

Remove unnecessary `extern` from C function declarations #283

Closed ChrisThrasher closed 1 week ago

ChrisThrasher commented 1 week ago

It's true that extern on C function declarations is unnecessary. However, these macros are also used for global variables and I think we do need to mark those as extern which currently is not happening.

EDIT: See #308