I want to put a global variable in the header file by declare it as an "extern" variable. Since it is a variable, many source files are using it, so I include the .h (header file) in each source file where the global being used. However, the CCS3.3 does not like it, and it gave me error that the variable being redefined in two source files.
What would be a refence to declare a global variable in a header file using CCS3.3?