summaryrefslogtreecommitdiff
path: root/include/System/System.h
blob: 66394c8cc7ccb1cbe04ad5365a4be6fb97d7b013 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//===--- System.h - The system library  -------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_LIBFLANG_CORE_H
#define LLVM_LIBFLANG_CORE_H

#include "Libflang.h"

LIBFLANG_ABI void  libflang_sys_init();
LIBFLANG_ABI void *libflang_malloc(size_t size);
LIBFLANG_ABI void  libflang_free(void *ptr);
LIBFLANG_ABI float libflang_etime(float *time0, float *time1);

#endif