https://github.com/JuliaLang/julia
Raw File
Tip revision: cadcf9d998b4514aedca86ffe5469ad51584f8b2 authored by Tony Kelman on 02 October 2015, 02:39:10 UTC
Also change number of returns for real geevx! and ggev!
Tip revision: cadcf9d
libsupport.h
// This file is a part of Julia. License is MIT: http://julialang.org/license

#ifndef LIBSUPPORT_H
#define LIBSUPPORT_H

#include "platform.h"

#include <stdlib.h>
#include <stdarg.h>
#include <assert.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

DLLEXPORT void libsupport_init(void);

#ifdef __cplusplus
}
#endif

#endif
back to top