NetBSD patch from Berndt, VK5ABN

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1497 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.0
Stéphane Fillod, F8CFE 2003-07-03 06:46:27 +00:00
rodzic a8ba080dea
commit c023f42534
1 zmienionych plików z 9 dodań i 1 usunięć

Wyświetl plik

@ -2,7 +2,7 @@
% * Hamlib Interface - RPC definitions
% * Copyright (c) 2000-2002 by Stephane Fillod and Frank Singleton
% *
% * $Id: rpcrig.x,v 1.7 2003-04-22 19:31:46 fillods Exp $
% * $Id: rpcrig.x,v 1.8 2003-07-03 06:46:27 fillods Exp $
% *
% * This library is free software; you can redistribute it and/or modify
% * it under the terms of the GNU Library General Public License as
@ -31,7 +31,11 @@
typedef unsigned int model_x;
typedef int vfo_x;
#ifdef __NetBSD__
typedef longlong_t freq_x;
#else
typedef hyper freq_x;
#endif
typedef unsigned int rmode_x;
typedef int pbwidth_x;
typedef unsigned long split_x;
@ -39,7 +43,11 @@ typedef int ptt_x;
typedef int dcd_x;
typedef long vfo_op_x;
typedef long shortfreq_x;
#ifdef __NetBSD__
typedef u_longlong_t setting_x;
#else
typedef unsigned hyper setting_x;
#endif
typedef long ant_x;
typedef long ann_x;
typedef int rptr_shift_x;