Hello, and welcome to the forum.
For a .c file that references any hardware registers, you should
#include "derivative.h"
or alternatively
#include <mc9s08qe32.h>
The first file is created by the project wizard, and references the header file for the device. For the second method, you are doing this directly. The first method is preferred - should you ever change the device used for a project, derivative.h will be automatically updated by the wizard.
There is a macro for FCMD within the device header file.
Regards,
Mac