/* @(#)memory_typedef.h 1.2 95/09/16 */

/*
 * Copyright (c) 1994, 1995 by Wayne C. Gramlich.  All rights reserved.
 *
 * Permission to use, copy, modify, distribute, and sell this software
 * for any purpose is hereby granted without fee provided that the above
 * copyright notice and this permission are retained.  The author makes
 * no representations about the suitability of this software for any purpose.
 * It is provided "as is" without express or implied warranty.
 */

#if !defined(MEMORY_TYPEDEF_H)
#define MEMORY_TYPEDEF_H

/*
 * {Pointer} are aligned on 4-byte address boundaries, wherease void *'s
 * are aligned on 1-byte boundaries.  Using {Pointer}'s instead of
 * void *'s makes lint a great deal happier about casts from memory
 * allocators.
 */
typedef long *Pointer;

#endif /* !defined(MEMORY_TYPEDEF_H) */

