summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/dl05/dl-load.h
blob: 98f41543b3de1a325c175e37a57c537c0373dbb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Copyright (c) 2016 Chris Johns <chrisj@rtems.org>.  All rights reserved.
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#if !defined(_DL_LOAD_H_)
#define _DL_LOAD_H_

#ifdef __cplusplus
extern "C" {
#endif

void exception_base(bool istrue);
void exception_dl(void);

int dl_load_test(void);

#ifdef __cplusplus
}
#endif

#endif