I am trying to port some relatively modern C code to an older compiler.

This compiler (DICE), it seems, chokes on the first header file and the first occurrence of this idiom:

#ifndef SOMETHING
#define SOMETHING

...  

#endif /* SOMETHING */

it dies on the second line in the header with: DCPP: "../../code/someheader.h" L:2 C:0 Error:39 Syntax Error

Changing to #define SOMETHING 1 made no difference.

So I have really two questions, am I using DICE with the wrong option or something, or did C programmers use some other idiom equal to ifndef-define back in the old days?

References:

link|improve this question

2  
If it's this DICE compiler then that certainly used to work with typical include guards. – tinman Nov 17 '11 at 15:08
1  
My first edition (21st printing) K&R describes #ifndef on page 208, so it's been around for a while. – Mark Wilkins Nov 17 '11 at 15:11
2  
Ooh, that question brings back memories! I even paid for the shareware version. :) Besides that, it should work, otherwise all system headers would fail as well. – Joachim Pileborg Nov 17 '11 at 15:13
3  
I'm guessing the problem is something else. Maybe the source files use a different line terminator than the compiler supports? – interjay Nov 17 '11 at 15:16
2  
Extra comment: looking at the source (if it is the DICE I thought) then whitespaces seems to only include carriage returns. So it might be barfing on linefeeds if you have those in your line endings. – tinman Nov 17 '11 at 15:16
show 3 more comments
feedback

3 Answers

up vote 11 down vote accepted

If it is this C compiler then by looking at the sources (src\dcpp\cpp.c) you can see that newlines only include the carriage return character and not the linefeed character.

If you have a line ending with CRLF then when the compiler strips the whitespace at the start of the line, it does not strip the linefeed before the # which is a syntax error, since preprocessor directives starting with # must be the first non-whitespace character in the line.

link|improve this answer
3  
Heh, you beat me by a second :) I'll delete my answer, enjoy the rep. – interjay Nov 17 '11 at 15:22
@interjay: Thanks, very sporting of you :) – tinman Nov 17 '11 at 15:23
Thank you all, good to see so many C savvy and Amiga tainted people. :-) – Amigable Clark Kant Nov 17 '11 at 15:27
1  
I don't care whether you need the rep, but the effort and a perfect answer are a definite +1. – Daniel Fischer Nov 17 '11 at 15:35
By the way the analysis of the error is top notch, I see now. – Amigable Clark Kant Nov 17 '11 at 17:13
feedback
#if SOMETHING
#else




#endif

might just work everywhere

link|improve this answer
aha! will try that – Amigable Clark Kant Nov 17 '11 at 15:08
Thank you! That was not it but might help another compiler. – Amigable Clark Kant Nov 17 '11 at 15:18
feedback

I think #ifndef wasn't always specced, and before, people used #if !defined SOMETHING. I'm not certain about this, though. However, #if !defined should also work with older compilers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.