mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-24 02:32:16 +00:00
17 lines
240 B
C
17 lines
240 B
C
|
// -*- mode: C++ -*-
|
||
|
|
||
|
#ifndef __ABG_HASH_H__
|
||
|
#define __ABG_HASH_H__
|
||
|
|
||
|
#include <cstddef>
|
||
|
namespace abigail
|
||
|
{
|
||
|
namespace hashing
|
||
|
{
|
||
|
size_t combine_hashes(size_t, size_t);
|
||
|
|
||
|
}//end namespace hash
|
||
|
}//end namespace abigail
|
||
|
|
||
|
#endif //__ABG_HASH_H__
|