This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

What SS/ means in Keil C language ?

I have a question about following code segment:

------------------------
#ifdef _DEBUG #define mprintf printf
#else #define mprintf SS/
------------------------

"SS/" means nothing ? ( or NULL ? )

Parents
  • Judging by the reset of the #if, they're trying to eliminate the printf when DEBUG is not defined. It might be a typo for commenting out the rest of the line ("//" instead of "SS/"). Or maybe "SS/" has meaning to some text processor they ran their code through before compiling.

Reply
  • Judging by the reset of the #if, they're trying to eliminate the printf when DEBUG is not defined. It might be a typo for commenting out the rest of the line ("//" instead of "SS/"). Or maybe "SS/" has meaning to some text processor they ran their code through before compiling.

Children