diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-20 12:21:37 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-20 19:14:25 -0800 |
commit | 7862d8d80e8612b3e7285ce2fe3ec901fda05fe6 (patch) | |
tree | 2519ad00c25808d6a7fd6165e655dac6b47f38c7 /xbiff.c | |
parent | c3d0f59af3626b73c32e8e03a41d6a712909c7af (diff) |
configure: Use AC_SYS_LARGEFILE to enable large file support
Also adds include of "config.h" before any other header files
are included, to avoid mismatch of _FILE_OFFSET_BITS when
processing other header files.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'xbiff.c')
-rw-r--r-- | xbiff.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -30,6 +30,10 @@ from the X Consortium. */ /* $XFree86: xc/programs/xbiff/xbiff.c,v 1.3tsi Exp $ */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <stdio.h> #include <stdlib.h> #include <X11/Xatom.h> |