annotate src/sox-test.c @ 6161:8fcac4d6d983 release

of-queueing: Fix syntax error with Octave 7 (bug #62314). * src/of-queueing-1-octave7.patch: Add new file. * dist-files.mk: Include new patch.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 14 Apr 2022 19:27:13 +0200
parents 110883446649
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2468
110883446649 package sox: update and fix pkg-config and test program build
Tony Theodore <tonyt@logyst.com>
parents: 2467
diff changeset
1 /*
110883446649 package sox: update and fix pkg-config and test program build
Tony Theodore <tonyt@logyst.com>
parents: 2467
diff changeset
2 * This file is part of MXE.
110883446649 package sox: update and fix pkg-config and test program build
Tony Theodore <tonyt@logyst.com>
parents: 2467
diff changeset
3 * See index.html for further information.
110883446649 package sox: update and fix pkg-config and test program build
Tony Theodore <tonyt@logyst.com>
parents: 2467
diff changeset
4 */
110883446649 package sox: update and fix pkg-config and test program build
Tony Theodore <tonyt@logyst.com>
parents: 2467
diff changeset
5
2467
fca08ecb394f new package: sox
Robert Chéramy <robert@cheramy.net>
parents:
diff changeset
6 #include <sox.h>
fca08ecb394f new package: sox
Robert Chéramy <robert@cheramy.net>
parents:
diff changeset
7
2468
110883446649 package sox: update and fix pkg-config and test program build
Tony Theodore <tonyt@logyst.com>
parents: 2467
diff changeset
8 int main(int argc, char *argv[])
110883446649 package sox: update and fix pkg-config and test program build
Tony Theodore <tonyt@logyst.com>
parents: 2467
diff changeset
9 {
110883446649 package sox: update and fix pkg-config and test program build
Tony Theodore <tonyt@logyst.com>
parents: 2467
diff changeset
10 (void)argc;
110883446649 package sox: update and fix pkg-config and test program build
Tony Theodore <tonyt@logyst.com>
parents: 2467
diff changeset
11 (void)argv;
110883446649 package sox: update and fix pkg-config and test program build
Tony Theodore <tonyt@logyst.com>
parents: 2467
diff changeset
12
2467
fca08ecb394f new package: sox
Robert Chéramy <robert@cheramy.net>
parents:
diff changeset
13 sox_format_init();
fca08ecb394f new package: sox
Robert Chéramy <robert@cheramy.net>
parents:
diff changeset
14 return(0);
fca08ecb394f new package: sox
Robert Chéramy <robert@cheramy.net>
parents:
diff changeset
15 }