cleanup: no variable definition in header file
We declare variables in header files, we don't define them. So we need to use 'extern' in the header file and put the definition in some C file.
Loading
Please register or sign in to comment
Maintenance operation of our GitLab server is scheduled for Thursday, March 13, 2025, at 2PM.
We declare variables in header files, we don't define them. So we need to use 'extern' in the header file and put the definition in some C file.