Skip to content
Snippets Groups Projects
Commit 1073ed78 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Improved LARGEFILE support.

Rev: src/fd_control.c:1.10
parent fc2b813f
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,15 @@ ...@@ -7,6 +7,15 @@
#include "global.h" #include "global.h"
#include "error.h" #include "error.h"
#else #else
#ifndef _LARGEFILE_SOURCE
# define _FILE_OFFSET_BITS 64
# define _LARGEFILE_SOURCE 1
# define _LARGEFILE64_SOURCE 1
#endif /* !_LARGERFILE_SOURCE */
/* HPUX needs these too... */
#ifndef __STDC_EXT__
# define __STDC_EXT__
#endif /* !__STDC_EXT__ */
#undef DEBUG #undef DEBUG
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment