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
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.