https://github.com/JuliaLang/julia
Raw File
Tip revision: cc2ff3c9d5e9a198c85af6ab3231955e3b461adb authored by Keno Fischer on 29 July 2022, 06:02:14 UTC
Fix whitespace check for cross-bootstrap case
Tip revision: cc2ff3c
ptrhash.h
// This file is a part of Julia. License is MIT: https://julialang.org/license

#ifndef JL_PTRHASH_H
#define JL_PTRHASH_H

#include "htable.h"

#ifdef __cplusplus
extern "C" {
#endif

HTPROT(ptrhash)

#ifdef __cplusplus
}
#endif

#endif
back to top