My case is in header file such as:
#define hpSwapBit16(toSwap) \
((((U16)toSwap) & 0x00FF) << 8) | \
((((U16)toSwap) & 0xFF00) >> 8) |
The files are created under NT (dos format} and copied into Linux with "cp"
command from "mount -t msdos /dev/fd0 /mnt" mounted file system. There is
no special character or anything after "\".
-eddie
-----Original Message-----
From: Alan Cox [mailto:alan@lxorguk.ukuu.org.uk]
Sent: Tuesday, September 07, 1999 1:06 PM
To: yiding_wang@am.exch.hp.com
Cc: alan@lxorguk.ukuu.org.uk; yiding_wang@am.exch.hp.com;
linux-kernel@vger.rutgers.edu
Subject: Re: RH6.0 C compiler doesn't recognize "\"
int main()
{
printf("foo blah\
bletch\n");
}
compiles fine here
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/