Rename .inc files to use .h extension

This commit is contained in:
Lassi Kortela 2019-08-09 17:18:21 +03:00
parent 8e35d98142
commit 4128fbc535
4 changed files with 2 additions and 2 deletions

View File

@ -39,6 +39,6 @@ static u_int32_t _pinthash(u_int32_t a)
}
#endif
#include "htable.inc"
#include "htable_inc.h"
HTIMPL(ptrhash, _pinthash, OP_EQ)

View File

@ -1,7 +1,7 @@
#ifndef __PTRHASH_H_
#define __PTRHASH_H_
#include "htableh.inc"
#include "htableh_inc.h"
HTPROT(ptrhash)