On Tue, Jan 23, 2001 at 10:16:52AM -0800, Mark Mitchell wrote: > ! /* This should match the type pointed to by atomic_p in > ! <sys/atomic_op.h>. */ > typedef int _Atomic_word; Perhaps typedef __typeof__(*(atomic_p)0) _Atomic_word; ? r~