blob: 9e3039da18843f3e182225b9a499ec47d28713a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
int MainA();
int MainW();
#ifdef __cplusplus
} /* extern "C" */
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|