diff options
author | Andreas Schwab <schwab@suse.de> | 2001-04-29 14:19:13 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2001-04-29 14:19:13 +0000 |
commit | 5ee5d7910189864f0ff851fe6b0506edf172811f (patch) | |
tree | ba31767d23cc86cc6f37a7aa3ac4f6253b223a27 | |
parent | 5385f8642c2663990706729c46a4c1cacaf04ccb (diff) | |
download | glibc-5ee5d7910189864f0ff851fe6b0506edf172811f.zip glibc-5ee5d7910189864f0ff851fe6b0506edf172811f.tar.gz glibc-5ee5d7910189864f0ff851fe6b0506edf172811f.tar.bz2 |
Fix missing backslash in last change.
-rw-r--r-- | sysdeps/unix/sysv/linux/kernel-features.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/kernel-features.h b/sysdeps/unix/sysv/linux/kernel-features.h index f4148aa..2a94b8d 100644 --- a/sysdeps/unix/sysv/linux/kernel-features.h +++ b/sysdeps/unix/sysv/linux/kernel-features.h @@ -148,7 +148,7 @@ /* Arm got fcntl64 in 2.4.4, PowerPC and SH have it also in 2.4.4 (I don't know when it got introduced). */ -#if __LINUX_KERNEL_VERSION >= 132100 +#if __LINUX_KERNEL_VERSION >= 132100 \ && (defined __arm__ || defined __powerpc__ || defined __sh__) # define __ASSUME_FCNTL64 1 #endif |