mirror of
https://git.proxmox.com/git/libgit2
synced 2025-12-31 22:14:44 +00:00
Use a 64 bit off_t throughout the library and tests on POSIX
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
This commit is contained in:
parent
960ca1d779
commit
cfe3a027ab
@ -1,6 +1,9 @@
|
||||
#ifndef INCLUDE_common_h__
|
||||
#define INCLUDE_common_h__
|
||||
|
||||
/** Force 64 bit off_t size on POSIX. */
|
||||
#define _FILE_OFFSET_BITS 64
|
||||
|
||||
#if defined(_WIN32) && !defined(__CYGWIN__) && !defined(__MINGW32__)
|
||||
#define GIT_WIN32 1
|
||||
#endif
|
||||
|
||||
@ -6,9 +6,6 @@
|
||||
#ifndef INCLUDE_fileops_h__
|
||||
#define INCLUDE_fileops_h__
|
||||
|
||||
/** Force 64 bit off_t size on POSIX. */
|
||||
#define _FILE_OFFSET_BITS 64
|
||||
|
||||
#include "common.h"
|
||||
#include "map.h"
|
||||
#include "dir.h"
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
#include "test_lib.h"
|
||||
#include "errors.h"
|
||||
#include <string.h>
|
||||
|
||||
BEGIN_TEST(errno_zero_on_init)
|
||||
must_be_true(git_errno == 0);
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
#include <stdarg.h>
|
||||
#include "test_lib.h"
|
||||
#include "fileops.h"
|
||||
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
#include "test_lib.h"
|
||||
#include <git/oid.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
BEGIN_TEST(oid_szs)
|
||||
git_oid out;
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
#include "test_lib.h"
|
||||
#include "test_helpers.h"
|
||||
#include <git/odb.h>
|
||||
#include "fileops.h"
|
||||
|
||||
static char *odb_dir = "test-objects";
|
||||
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
#include "test_lib.h"
|
||||
#include "test_helpers.h"
|
||||
#include <git/odb.h>
|
||||
#include "fileops.h"
|
||||
|
||||
/*
|
||||
* read loose objects from the object directory. The objects are
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
#include "test_lib.h"
|
||||
#include "test_helpers.h"
|
||||
#include <git/odb.h>
|
||||
#include "fileops.h"
|
||||
|
||||
/*
|
||||
* read loose objects from the object directory. The objects are
|
||||
|
||||
@ -23,6 +23,7 @@
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#include "common.h"
|
||||
#include "test_helpers.h"
|
||||
#include "fileops.h"
|
||||
|
||||
|
||||
@ -23,10 +23,7 @@
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
#define GIT__NO_HIDE_MALLOC
|
||||
#include "test_lib.h"
|
||||
|
||||
struct test_info
|
||||
|
||||
@ -23,9 +23,14 @@
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include "common.h"
|
||||
#include <git/common.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
|
||||
/** Declare a function never returns to the caller. */
|
||||
#ifdef __GNUC__
|
||||
# define NORETURN __attribute__((__noreturn__))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user