/*
 * This file is part of hat-trie.
 *
 * Copyright (c) 2011 by Daniel C. Jones <dcjones@cs.washington.edu>
 *
 *
 * Common typedefs, etc.
 *
 */


#ifndef HATTRIE_COMMON_H
#define HATTRIE_COMMON_H

#include <stdint.h>

// an unsigned int that is guaranteed to be the same size as a pointer
typedef uintptr_t value_t;

#endif


