mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 12:08:23 +01:00
reshuffle included files to include config.h as first
config.h may contain defines like _FILE_OFFSET_BITS which influence the system wide include files (off_t types, open -> open64 function usage etc.). Related: https://github.com/alsa-project/alsa-utils/pull/223 Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
9b95d9b20a
commit
feb9c4cdec
36 changed files with 48 additions and 15 deletions
|
@ -20,6 +20,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <syslog.h>
|
#include <syslog.h>
|
||||||
#include <alsa/asoundlib.h>
|
#include <alsa/asoundlib.h>
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <alsa/asoundlib.h>
|
#include <alsa/asoundlib.h>
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
|
@ -20,6 +20,8 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
|
#include "aconfig.h"
|
||||||
|
#include "version.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
@ -37,8 +39,6 @@
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <alsa/asoundlib.h>
|
#include <alsa/asoundlib.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include "aconfig.h"
|
|
||||||
#include "version.h"
|
|
||||||
|
|
||||||
#define NSEC_PER_SEC 1000000000L
|
#define NSEC_PER_SEC 1000000000L
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
|
@ -9,6 +9,8 @@
|
||||||
#ifndef __ALSA_UTILS_AXFER_CONTAINER__H_
|
#ifndef __ALSA_UTILS_AXFER_CONTAINER__H_
|
||||||
#define __ALSA_UTILS_AXFER_CONTAINER__H_
|
#define __ALSA_UTILS_AXFER_CONTAINER__H_
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
|
|
||||||
#define _LARGEFILE64_SOURCE
|
#define _LARGEFILE64_SOURCE
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
|
|
@ -9,12 +9,12 @@
|
||||||
#ifndef __ALSA_UTILS_AXFER_XFER__H_
|
#ifndef __ALSA_UTILS_AXFER_XFER__H_
|
||||||
#define __ALSA_UTILS_AXFER_XFER__H_
|
#define __ALSA_UTILS_AXFER_XFER__H_
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
|
|
||||||
#include "mapper.h"
|
#include "mapper.h"
|
||||||
|
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
|
|
||||||
#include "aconfig.h"
|
|
||||||
|
|
||||||
enum xfer_type {
|
enum xfer_type {
|
||||||
XFER_TYPE_UNSUPPORTED = -1,
|
XFER_TYPE_UNSUPPORTED = -1,
|
||||||
XFER_TYPE_LIBASOUND = 0,
|
XFER_TYPE_LIBASOUND = 0,
|
||||||
|
|
|
@ -13,6 +13,8 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
@ -22,7 +24,6 @@
|
||||||
|
|
||||||
#include <alsa/asoundlib.h>
|
#include <alsa/asoundlib.h>
|
||||||
|
|
||||||
#include "aconfig.h"
|
|
||||||
#include "gettext.h"
|
#include "gettext.h"
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
|
@ -13,6 +13,8 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
@ -22,7 +24,6 @@
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <fftw3.h>
|
#include <fftw3.h>
|
||||||
|
|
||||||
#include "aconfig.h"
|
|
||||||
#include "gettext.h"
|
#include "gettext.h"
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
|
@ -13,13 +13,14 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
#include "aconfig.h"
|
|
||||||
#include "gettext.h"
|
#include "gettext.h"
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
|
@ -13,6 +13,8 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
|
@ -20,6 +20,8 @@
|
||||||
* stable indefinitely
|
* stable indefinitely
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
|
@ -13,6 +13,8 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
@ -22,7 +24,6 @@
|
||||||
|
|
||||||
#include <tinyalsa/asoundlib.h>
|
#include <tinyalsa/asoundlib.h>
|
||||||
|
|
||||||
#include "aconfig.h"
|
|
||||||
#include "gettext.h"
|
#include "gettext.h"
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <alsa/asoundlib.h>
|
#include <alsa/asoundlib.h>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -271,7 +272,7 @@ static int nhlt_to_json(FILE *out, const char *nhlt_file)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define PROG "nhlt-dmic-info"
|
#define PROG "nhlt-dmic-info"
|
||||||
#define VERSION "1"
|
#define PROG_VERSION "1"
|
||||||
|
|
||||||
#define NHLT_FILE "/sys/firmware/acpi/tables/NHLT"
|
#define NHLT_FILE "/sys/firmware/acpi/tables/NHLT"
|
||||||
|
|
||||||
|
@ -380,7 +381,7 @@ int main(int argc, char *argv[])
|
||||||
debug = 1;
|
debug = 1;
|
||||||
break;
|
break;
|
||||||
case 'v':
|
case 'v':
|
||||||
printf(PROG " version " VERSION "\n");
|
printf(PROG " version " PROG_VERSION "\n");
|
||||||
res = EXIT_SUCCESS;
|
res = EXIT_SUCCESS;
|
||||||
goto out;
|
goto out;
|
||||||
case '?': // error msg already printed
|
case '?': // error msg already printed
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -26,7 +27,6 @@
|
||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <alsa/asoundlib.h>
|
#include <alsa/asoundlib.h>
|
||||||
#include "aconfig.h"
|
|
||||||
#include "gettext.h"
|
#include "gettext.h"
|
||||||
|
|
||||||
#ifdef SND_SEQ_PORT_CAP_INACTIVE
|
#ifdef SND_SEQ_PORT_CAP_INACTIVE
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
|
|
||||||
/* TODO: sequencer queue timer selection */
|
/* TODO: sequencer queue timer selection */
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
@ -28,7 +29,6 @@
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <alsa/asoundlib.h>
|
#include <alsa/asoundlib.h>
|
||||||
#include "aconfig.h"
|
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
#ifdef HAVE_SEQ_CLIENT_INFO_GET_MIDI_VERSION
|
#ifdef HAVE_SEQ_CLIENT_INFO_GET_MIDI_VERSION
|
||||||
#include <alsa/ump_msg.h>
|
#include <alsa/ump_msg.h>
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
@ -27,7 +28,6 @@
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
#include <poll.h>
|
#include <poll.h>
|
||||||
#include <alsa/asoundlib.h>
|
#include <alsa/asoundlib.h>
|
||||||
#include "aconfig.h"
|
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
#ifdef HAVE_SEQ_CLIENT_INFO_GET_MIDI_VERSION
|
#ifdef HAVE_SEQ_CLIENT_INFO_GET_MIDI_VERSION
|
||||||
#include <alsa/ump_msg.h>
|
#include <alsa/ump_msg.h>
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
@ -28,7 +29,6 @@
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include "aconfig.h"
|
|
||||||
#include "gettext.h"
|
#include "gettext.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
Copyleft 1999 Phil Burk - No rights reserved.
|
Copyleft 1999 Phil Burk - No rights reserved.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include "pink.h"
|
#include "pink.h"
|
||||||
|
|
|
@ -36,6 +36,8 @@
|
||||||
* $Id: speaker_test.c,v 1.00 2003/11/26 19:43:38 jcdutton Exp $
|
* $Id: speaker_test.c,v 1.00 2003/11/26 19:43:38 jcdutton Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -53,7 +55,6 @@
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include "pink.h"
|
#include "pink.h"
|
||||||
#include "aconfig.h"
|
|
||||||
#include "gettext.h"
|
#include "gettext.h"
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
#include "os_compat.h"
|
#include "os_compat.h"
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
//
|
//
|
||||||
// Author: Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
// Author: Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
// Author: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
|
// Author: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
|
||||||
// Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
// Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include "dmic-debug.h"
|
#include "dmic-debug.h"
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
// Author: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
|
// Author: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
|
||||||
// Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
// Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
//
|
//
|
||||||
// Author: Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
// Author: Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include "intel-nhlt.h"
|
#include "intel-nhlt.h"
|
||||||
|
|
||||||
static int get_int_val(snd_config_t *input, long *int_val, snd_config_t *top)
|
static int get_int_val(snd_config_t *input, long *int_val, snd_config_t *top)
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
//
|
//
|
||||||
// Author: Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
// Author: Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
//
|
//
|
||||||
// Author: Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
// Author: Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include "ssp-debug.h"
|
#include "ssp-debug.h"
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
// Rander Wang <rander.wang@linux.intel.com>
|
// Rander Wang <rander.wang@linux.intel.com>
|
||||||
// Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
// Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
//
|
//
|
||||||
// Author: Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
// Author: Jaska Uimonen <jaska.uimonen@linux.intel.com>
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
The full GNU General Public License is included in this distribution
|
The full GNU General Public License is included in this distribution
|
||||||
in the file called LICENSE.GPL.
|
in the file called LICENSE.GPL.
|
||||||
*/
|
*/
|
||||||
|
#include "aconfig.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
The full GNU General Public License is included in this distribution
|
The full GNU General Public License is included in this distribution
|
||||||
in the file called LICENSE.GPL.
|
in the file called LICENSE.GPL.
|
||||||
*/
|
*/
|
||||||
|
#include "aconfig.h"
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <alsa/asoundlib.h>
|
#include <alsa/asoundlib.h>
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
The full GNU General Public License is included in this distribution
|
The full GNU General Public License is included in this distribution
|
||||||
in the file called LICENSE.GPL.
|
in the file called LICENSE.GPL.
|
||||||
*/
|
*/
|
||||||
|
#include "aconfig.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
in the file called LICENSE.GPL.
|
in the file called LICENSE.GPL.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
in the file called LICENSE.GPL.
|
in the file called LICENSE.GPL.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aconfig.h"
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
Loading…
Reference in a new issue