X-Ray Jam. June 9-15, 2025. In 9 days.

[Day 11] Problem with internal

Hey, I have problem when including files. When I declare function as a internal then compiler throws errors, everything works just fine without it. How do I fix it?
Have you #define'd internal? Internal is just a #define in the Handmade Hero codebase to be "static":

1
#define internal static


- Casey
Yes, exactly, I was so sleepy that I missed #include before #define. Thanks!