forked from erikarn/LinBPQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
macdummy.c
52 lines (34 loc) · 1.14 KB
/
macdummy.c
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
Copyright 2001-2015 John Wiseman G8BPQ
This file is part of LinBPQ/BPQ32.
LinBPQ/BPQ32 is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
LinBPQ/BPQ32 is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
*/
#include "CHeaders.h"
#include "tncinfo.h"
// For MAX OS/X
//int SENDNODES() {return 0;}
//int BYECMD() {return 0;}
//int CMDR00() {return 0;}
//int DoNetromConnect() {return 0;}
//int CMDC00() {return 0;}
//int CheckReceivedData() {return 0;}
//int GetLastError() {return 0;}
VOID ETHERExtInit()
{
}
#if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1060
char *gcvt(double number, size_t ndigit, char *buf)
{
sprintf(buf,"%f.6", number);
return buf;
}
#endif