aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/216 source set realistic example/boards/arm/arm.h
blob: 4dd6b694f86cdc44cc3bc717765c7e599ac073b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef ARM_H
#define ARM_H 1

#include "common.h"

struct ARMBoard: Board {
    const char *target();
    void some_arm_thing();
};


#endif