Rename .inc files to use .h extension
This commit is contained in:
parent
8e35d98142
commit
4128fbc535
|
@ -39,6 +39,6 @@ static u_int32_t _pinthash(u_int32_t a)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "htable.inc"
|
#include "htable_inc.h"
|
||||||
|
|
||||||
HTIMPL(ptrhash, _pinthash, OP_EQ)
|
HTIMPL(ptrhash, _pinthash, OP_EQ)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#ifndef __PTRHASH_H_
|
#ifndef __PTRHASH_H_
|
||||||
#define __PTRHASH_H_
|
#define __PTRHASH_H_
|
||||||
|
|
||||||
#include "htableh.inc"
|
#include "htableh_inc.h"
|
||||||
|
|
||||||
HTPROT(ptrhash)
|
HTPROT(ptrhash)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue