From 5701a4d8611ad1e310b76b00b146b0902c9b34ff Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 9 Apr 2012 11:04:07 -0700 Subject: Move blksize_t and blkcnt_t to replace.h from includes.h. Should help with platforms that don't have these. Autobuild-User: Jeremy Allison Autobuild-Date: Mon Apr 9 21:40:42 CEST 2012 on sn-devel-104 --- source3/include/includes.h | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'source3/include') diff --git a/source3/include/includes.h b/source3/include/includes.h index 7bdd20074a..88b8b4fef2 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -317,16 +317,6 @@ typedef uint64_t br_off; #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,(v)&0xFFFFFFFF), SIVAL(p,ofs,(v)>>32)) #define IVAL_TO_SMB_OFF_T(buf,off) ((off_t)(( ((uint64_t)(IVAL((buf),(off)))) & ((uint64_t)0xFFFFFFFF) ))) -#ifndef HAVE_BLKSIZE_T -/* This is mainly for HP/UX which defines st_blksize as long */ -typedef long blksize_t; -#endif - -#ifndef HAVE_BLKCNT_T -/* This is mainly for HP/UX which doesn't have blkcnt_t */ -typedef long blkcnt_t; -#endif - /* * Type for stat structure. */ -- cgit