Fixed irix_blkcnt_t size (was 64 bit, changed to 32). This caused alignment

troubles in struct stat, hence giving wrong st_blocks, st_blksize and st_size
values.
This commit is contained in:
manu 2002-02-12 23:11:58 +00:00
parent 35734831f9
commit 5ad92b8294
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: irix_types.h,v 1.10 2002/02/04 20:26:34 manu Exp $ */
/* $NetBSD: irix_types.h,v 1.11 2002/02/12 23:11:58 manu Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@ -79,7 +79,7 @@ typedef __int32_t irix_pid_t;
typedef int irix_time_t;
typedef unsigned long irix_size_t;
#endif
typedef __int64_t irix_blkcnt_t;
typedef __int32_t irix_blkcnt_t;
typedef __uint64_t irix_ino64_t;
typedef __int64_t irix_off64_t;
typedef __int64_t irix_blkcnt64_t;