index c95bc86ab6c19c8a938a4ecc4fdd112983e3ad98..428c1350e7d3a9a31aa57478dd49ac1afcfa919e 100644 (file)
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: c.h,v 1.154 2003年10月11日 19:53:45 momjian Exp $
+ * $Id: c.h,v 1.155 2003年10月14日 19:08:00 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#define MemSet(start, val, len) \
do \
{ \
- /* (void *) used because we check for alignment below */ \
- int32 * _start = (int32 *) (void *) (start); \
+ int32 * _start = (int32 *) (start); \
int _val = (val); \
Size _len = (len); \
\