summaryrefslogtreecommitdiff
path: root/defs.h
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@altlinux.org>2013-11-12 22:34:42 +0000
committerDmitry V. Levin <ldv@altlinux.org>2013-11-12 22:44:40 +0000
commit0506f0f430c15677c7724f9c4500093e0e7e15d3 (patch)
tree39af41183c33df60163f494865cc35b9bd677002 /defs.h
parent157f98aac598261de1703e212683ad5a1f067acb (diff)
downloadstrace-0506f0f430c15677c7724f9c4500093e0e7e15d3.tar.gz
strace-0506f0f430c15677c7724f9c4500093e0e7e15d3.tar.bz2
strace-0506f0f430c15677c7724f9c4500093e0e7e15d3.tar.xz
Stop using _LFS64_LARGEFILE
There is only one place left in the code where strace guesses whether libc provides LFS64 functions and structures. The most natural thing to do there is to check for _LARGEFILE64_SOURCE - the macro provided by glibc. Other libc implementations that provide nondegenerate LFS64 interfaces are expected to define this macro as well. * defs.h (_LFS64_LARGEFILE): Remove. * strace.c: Use _LARGEFILE64_SOURCE instead of _LFS64_LARGEFILE.
Diffstat (limited to 'defs.h')
-rw-r--r--defs.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/defs.h b/defs.h
index 5b2b0ca..6b5f650 100644
--- a/defs.h
+++ b/defs.h
@@ -30,12 +30,6 @@
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
-#ifdef _LARGEFILE64_SOURCE
-/* This is the macro everything checks before using foo64 names. */
-# ifndef _LFS64_LARGEFILE
-# define _LFS64_LARGEFILE 1
-# endif
-#endif
#ifdef MIPS
# include <sgidefs.h>