summaryrefslogtreecommitdiff
path: root/fixincludes/inclhack.def
diff options
context:
space:
mode:
authorkorbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4>2005-05-06 16:33:18 +0000
committerkorbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4>2005-05-06 16:33:18 +0000
commit9b20d84fec009d6a9c9b3b9d03cfa6bd697445d4 (patch)
tree2716e85e0e64803fb6b719c82c4c6cf83f7e6011 /fixincludes/inclhack.def
parentff1774ccd2b153192dcc03cd99acf94b6a659144 (diff)
downloadgcc-9b20d84fec009d6a9c9b3b9d03cfa6bd697445d4.tar.gz
Fix backslash expression in here string
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99322 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'fixincludes/inclhack.def')
-rw-r--r--fixincludes/inclhack.def14
1 files changed, 7 insertions, 7 deletions
diff --git a/fixincludes/inclhack.def b/fixincludes/inclhack.def
index f55a9f05a05..3adf4711d67 100644
--- a/fixincludes/inclhack.def
+++ b/fixincludes/inclhack.def
@@ -82,13 +82,13 @@ fix = {
#if defined(__FD_ZERO) && !defined(__GLIBC__)
#undef __FD_ZERO
- # define __FD_ZERO(fdsetp) \\
- do { \\
- int __d0, __d1; \\
- __asm__ __volatile__("cld ; rep ; stosl" \\
- : "=&c" (__d0), "=&D" (__d1) \\
- : "a" (0), "0" (__FDSET_LONGS), \\
- "1" ((__fd_set *) (fdsetp)) :"memory"); \\
+ # define __FD_ZERO(fdsetp) \
+ do { \
+ int __d0, __d1; \
+ __asm__ __volatile__("cld ; rep ; stosl" \
+ : "=&c" (__d0), "=&D" (__d1) \
+ : "a" (0), "0" (__FDSET_LONGS), \
+ "1" ((__fd_set *) (fdsetp)) :"memory"); \
} while (0)
#endif