https://github.com/JuliaLang/julia
Raw File
Tip revision: b8e9a9ecc62ab49003bd4f1834771bdeb8cb1aa2 authored by Kristoffer Carlsson on 21 March 2020, 16:36:32 UTC
Set VERSION to 1.4.0 (#35168)
Tip revision: b8e9a9e
libsupport.h
// This file is a part of Julia. License is MIT: https://julialang.org/license

#ifndef JL_LIBSUPPORT_H
#define JL_LIBSUPPORT_H

#include "platform.h"

#include <stdlib.h>
#include <stdarg.h>
#include "dtypes.h"
#include "utils.h"
#include "utf8.h"
#include "ios.h"
#include "timefuncs.h"
#include "hashing.h"
#include "ptrhash.h"
#include "bitvector.h"
#include "dirpath.h"
#include "strtod.h"

#ifdef __cplusplus
extern "C" {
#endif

JL_DLLEXPORT void libsupport_init(void);

#ifdef __cplusplus
}
#endif

#endif
back to top