https://github.com/JuliaLang/julia
Raw File
Tip revision: 0727c0a6d7781723ed7bf1e084bd6d81044ad726 authored by Valentin Churavy on 30 August 2024, 15:45:26 UTC
fix copyto in WS
Tip revision: 0727c0a
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