summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/dl08/dl-o1.h
blob: f6a10f14812e3507fff2e3b724697ab37e28fa84 (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
/*
 * Copyright (c) 2018 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(DL01_H)
#define DL01_H

extern int         dl01_bss1;
extern float       dl01_bss2[30];
extern char        dl01_bss3[10];
extern int         dl01_data1;
extern float       dl01_data2;
extern const int   dl01_const1;
extern const float dl01_const2;

int dl01_func1(void);

#endif