// ******************************************************************* // (C) Copyright 2013 Leiden Institute of Advanced Computer Science // Universiteit Leiden // All Rights Reserved // ******************************************************************* // Dou Shou Qi (core) // ******************************************************************* // FILE INFORMATION: // File: types.h // Author: Jonathan K. Vis // Revision: 1.01a // Date: 2013/04/11 // ******************************************************************* // DESCRIPTION: // Defines specialized types. // ******************************************************************* #if !defined(__types_h__) #define __types_h__ typedef unsigned int uint32_t; typedef unsigned long long uint64_t; #endif