Change all to remove HAVE_CONFIG dependency and include <hamlib/config.h> by default

This is necessary to keep alignment between the client view of rig->state and the shared libarary view
Including PTHREAD functions in rig->state necessitated this as HAVE_PTHREAD only defined during hamlib compilation.
Clients including hamlib/rig.h did not pick up all the HAVE* config variable that control what gets included
https://github.com/Hamlib/Hamlib/issues/947
pull/954/head
Mike Black W9MDB 2022-02-04 07:41:36 -06:00
rodzic d6d446944b
commit 68e121d82c
407 zmienionych plików z 408 dodań i 1113 usunięć

Wyświetl plik

@ -5,7 +5,7 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := elecraft.c kpa.c kpa1500.c
LOCAL_MODULE := elecraft
LOCAL_CFLAGS := -DHAVE_CONFIG_H
LOCAL_CFLAGS :=
LOCAL_C_INCLUDES := android include src
LOCAL_LDLIBS := -lhamlib

Wyświetl plik

@ -22,9 +22,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h> /* Standard library definitions */

Wyświetl plik

@ -27,9 +27,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <hamlib/rig.h>
#include <hamlib/rotator.h>

Wyświetl plik

@ -29,9 +29,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
//#include <hamlib/ampator.h>
#include <hamlib/ampclass.h>

Wyświetl plik

@ -28,9 +28,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <hamlib/rig.h>
#include <hamlib/rigclass.h>

Wyświetl plik

@ -28,9 +28,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <hamlib/rotator.h>
#include <hamlib/rotclass.h>

Wyświetl plik

@ -46,7 +46,6 @@ SUPPRESS="\
CHECK="\
-Duint64_t \
-D HAVE_CONFIG_H \
-D HAMLIB_EXPORT \
-D HAMLIB_EXPORT_VAR \
-D __WORDSIZE \

Wyświetl plik

@ -20,9 +20,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
/*
* Simple backend of a chirp source.

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -1,6 +1,4 @@
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <hamlib/config.h>
#include "asyncpipe.h"

Wyświetl plik

@ -22,9 +22,7 @@
/* Forcing WINVER in MinGW yanks in getaddrinfo(), but locks out Win95/Win98 */
/* #define WINVER 0x0501 */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>
#include <stdio.h> /* Standard input/output definitions */

Wyświetl plik

@ -22,9 +22,7 @@
*/
/* NOTE!!! AIX requires this to be the first thing in the file.
Do not put ANYTHING before it! */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#if !__STDC__ && !defined(const) && IN_GCC
#define const

Wyświetl plik

@ -17,9 +17,7 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include "getopt.h"

Wyświetl plik

@ -5,7 +5,7 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := adat.c adt_200a.c
LOCAL_MODULE := adat
LOCAL_CFLAGS := -DHAVE_CONFIG_H
LOCAL_CFLAGS :=
LOCAL_C_INCLUDES := android include src
LOCAL_LDLIBS := $(LOCAL_SHARED_LIBRARIES) -Lobj/local/$(TARGET_ARCH_ABI)

Wyświetl plik

@ -21,9 +21,7 @@
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <hamlib/config.h>
// ---------------------------------------------------------------------------
// SYSTEM INCLUDES

Wyświetl plik

@ -22,9 +22,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <hamlib/config.h>
// ---------------------------------------------------------------------------
// ADT-200A INCLUDES

Wyświetl plik

@ -5,7 +5,7 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := dx77.c alinco.c dxsr8.c
LOCAL_MODULE := alinco
LOCAL_CFLAGS := -DHAVE_CONFIG_H
LOCAL_CFLAGS :=
LOCAL_C_INCLUDES := android include src
LOCAL_LDLIBS := -lhamlib -Lobj/local/$(TARGET_ARCH_ABI)

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>
#include <string.h> /* String function definitions */

Wyświetl plik

@ -6,7 +6,7 @@ LOCAL_SRC_FILES := ar8200.c ar8000.c ar5000.c ar3000.c ar7030.c ar3030.c \
ar2700.c ar8600.c ar7030p.c ar7030p_utils.c sr2200.c aor.c
LOCAL_MODULE := aor
LOCAL_CFLAGS := -DHAVE_CONFIG_H
LOCAL_CFLAGS :=
LOCAL_C_INCLUDES := android include src
LOCAL_LDLIBS := -lhamlib -Lobj/local/$(TARGET_ARCH_ABI)

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <string.h>

Wyświetl plik

@ -18,9 +18,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h>

Wyświetl plik

@ -20,9 +20,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <string.h>

Wyświetl plik

@ -24,9 +24,7 @@
// Version 2004.11.29 F.Melchert (DC9RP)
//
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <string.h>

Wyświetl plik

@ -24,9 +24,7 @@
* Version 2009.11.21 Larry Gadallah (VE6VQ)
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <string.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -21,9 +21,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <string.h>

Wyświetl plik

@ -18,9 +18,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h>

Wyświetl plik

@ -18,9 +18,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h>

Wyświetl plik

@ -5,7 +5,7 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := barrett.c barrett.h 950.c
LOCAL_MODULE := barrett
LOCAL_CFLAGS := -DHAVE_CONFIG_H
LOCAL_CFLAGS :=
LOCAL_C_INCLUDES := android include src
LOCAL_LDLIBS := -lhamlib -Lobj/local/$(TARGET_ARCH_ABI)

Wyświetl plik

@ -18,9 +18,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h>

Wyświetl plik

@ -5,7 +5,7 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := codan.c codan.h
LOCAL_MODULE := codan
LOCAL_CFLAGS := -DHAVE_CONFIG_H
LOCAL_CFLAGS :=
LOCAL_C_INCLUDES := android include src
LOCAL_LDLIBS := -lhamlib -Lobj/local/$(TARGET_ARCH_ABI)

Wyświetl plik

@ -18,9 +18,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h>

Wyświetl plik

@ -5,7 +5,7 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := dorji.c dra818.c
LOCAL_MODULE := dorji
LOCAL_CFLAGS := -DHAVE_CONFIG_H
LOCAL_CFLAGS :=
LOCAL_C_INCLUDES := android include src
LOCAL_LDLIBS := -lhamlib -Lobj/local/$(TARGET_ARCH_ABI)

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>
#include <string.h> /* String function definitions */

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h>

Wyświetl plik

@ -5,7 +5,7 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := r8a.c r8b.c drake.c
LOCAL_MODULE := drake
LOCAL_CFLAGS := -DHAVE_CONFIG_H
LOCAL_CFLAGS :=
LOCAL_C_INCLUDES := android include src
LOCAL_LDLIBS := -lhamlib -Lobj/local/$(TARGET_ARCH_ABI)

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -5,7 +5,7 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := dummy.c rot_dummy.c netrigctl.c netrotctl.c flrig.c trxmanager.c dummy_common.c
LOCAL_MODULE := dummy
LOCAL_CFLAGS := -DHAVE_CONFIG_H
LOCAL_CFLAGS :=
LOCAL_C_INCLUDES := android include src
LOCAL_LDLIBS := -lhamlib -Lobj/local/$(TARGET_ARCH_ABI)

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>
#include <string.h> /* String function definitions */

Wyświetl plik

@ -19,9 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
// cppcheck-suppress *
#include <stdio.h>

Wyświetl plik

@ -19,9 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
// cppcheck-suppress *
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>
#include <string.h> /* String function definitions */

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>
#include <string.h> /* String function definitions */

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>
#include <string.h> /* String function definitions */

Wyświetl plik

@ -18,9 +18,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h>

Wyświetl plik

@ -5,7 +5,7 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := elad.c fdm_duo.c
LOCAL_MODULE := elad
LOCAL_CFLAGS := -DHAVE_CONFIG_H
LOCAL_CFLAGS :=
LOCAL_C_INCLUDES := android include src
LOCAL_LDLIBS := -lhamlib -Lobj/local/$(TARGET_ARCH_ABI)

Wyświetl plik

@ -21,9 +21,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>
#include <stdio.h>

Wyświetl plik

@ -20,9 +20,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>
#include <stdio.h>

Wyświetl plik

@ -5,7 +5,7 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := flexradio.c sdr1k.c dttsp.c
LOCAL_MODULE := flexradio
LOCAL_CFLAGS := -DHAVE_CONFIG_H
LOCAL_CFLAGS :=
LOCAL_C_INCLUDES := android include src
LOCAL_LDLIBS := -lhamlib -Lobj/local/$(TARGET_ARCH_ABI)

Wyświetl plik

@ -22,9 +22,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>
#include <stdio.h> /* Standard input/output definitions */

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>
#include <string.h> /* String function definitions */

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>
#include <string.h> /* String function definitions */

Wyświetl plik

@ -6,7 +6,7 @@ LOCAL_SRC_FILES := icm700pro.c icm710.c icm802.c icm803.c \
icmarine.c
LOCAL_MODULE := icmarine
LOCAL_CFLAGS := -DHAVE_CONFIG_H
LOCAL_CFLAGS :=
LOCAL_C_INCLUDES := android include src
LOCAL_LDLIBS := -lhamlib -Lobj/local/$(TARGET_ARCH_ABI)

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -18,9 +18,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdio.h>
#include <stdlib.h>

Wyświetl plik

@ -16,7 +16,7 @@ LOCAL_SRC_FILES := ic706.c icr8500.c ic735.c ic775.c ic756.c \
id31.c icr8600.c ic7300.c ic7610.c icr30.c ic785x.c
LOCAL_MODULE := icom
LOCAL_CFLAGS := -DHAVE_CONFIG_H
LOCAL_CFLAGS :=
LOCAL_C_INCLUDES := android include src
LOCAL_LDLIBS := -lhamlib -Lobj/local/$(TARGET_ARCH_ABI)

Wyświetl plik

@ -31,9 +31,7 @@
* To Do: get the datasheet, and testing on real hardware!!
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <string.h> /* String function definitions */

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -20,9 +20,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <string.h> /* String function definitions */

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -20,9 +20,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -24,9 +24,7 @@
* 25Mar09: Initial release
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>
#include <string.h> /* String function definitions */

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -20,9 +20,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <string.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>
#include <string.h> /* String function definitions */

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>
#include <string.h> /* String function definitions */

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <stdlib.h>

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <string.h> /* String function definitions */

Wyświetl plik

@ -19,9 +19,7 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <hamlib/config.h>
#include <string.h>
#include <stdlib.h>

Some files were not shown because too many files have changed in this diff Show More