19 lines
231 B
C
19 lines
231 B
C
|
// This file is a part of Julia. License is MIT: https://julialang.org/license
|
||
|
|
||
|
#ifndef PTRHASH_H
|
||
|
#define PTRHASH_H
|
||
|
|
||
|
#include "htable.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
HTPROT(ptrhash)
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|