diff options
author | "Jan-Benedict Glaw" <jbglaw@lug-owl.de> | 2006-01-30 21:23:23 +0000 |
---|---|---|
committer | "Jan-Benedict Glaw" <jbglaw@lug-owl.de> | 2006-01-30 21:23:23 +0000 |
commit | f118c166cb9967908ff6df233eaacffc3e8e3642 (patch) | |
tree | 78e2140c12d183e65d0196e9a65d27c1a0debfe1 /libc/sysdeps/linux/vax/brk.c | |
parent | 6af91aa03ac4492a6a1c884b3c02f2b0ce5f9d4f (diff) |
Assebler sources ment to be preprocessed shouldn't contain assembler
comments, but C comments instead...
Diffstat (limited to 'libc/sysdeps/linux/vax/brk.c')
-rw-r--r-- | libc/sysdeps/linux/vax/brk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/vax/brk.c b/libc/sysdeps/linux/vax/brk.c index bd49e19fe..5b23f6075 100644 --- a/libc/sysdeps/linux/vax/brk.c +++ b/libc/sysdeps/linux/vax/brk.c @@ -30,7 +30,7 @@ brk (void *addr) { register unsigned long int result __asm__ ("%%r0"); - asm ( + __asm__ ( " pushl %%ap \n" /* Start frame */ " pushl %2 \n" /* New top address we wish to get */ " pushl $1 \n" /* One argument */ |