????

Your IP : 216.73.216.174


Current Path : /usr/src/snapapi26-0.8.52/
Upload File :
Current File : //usr/src/snapapi26-0.8.52/sn_huge_ptr.h

/*
   Copyright (C) Acronis, 2004-2006 
   Written by Vladimir Simonov
   $Id$
*/

#ifndef SN_HUGE_PTR_H_INCLUDED
#define SN_HUGE_PTR_H_INCLUDED

#ifdef _LP64
#define SN_HUGE_PTR(ptr) ptr
#define SN_HUGE_PTR2(ptr) ptr
#else
#ifdef __BIG_ENDIAN__
#define SN_HUGE_PTR(ptr) unsigned pad; ptr
#define SN_HUGE_PTR2(ptr) unsigned pad2; ptr
#else
#define SN_HUGE_PTR(ptr) ptr; unsigned pad
#define SN_HUGE_PTR2(ptr) ptr; unsigned pad2
#endif /* __BIG_ENDIAN__ */
#endif /* _LP64 */

#endif /* SN_HUGE_PTR_H_INCLUDED */