annotate src/sox-test.c @ 5895:2db7f803d55d release

librsb: Update to version 1.2.0.10 (bug #60042). * src/librsb.mk: Update version and checksum. Remove work-around for fixed bug.
author Markus Mützel <markus.muetzel@gmx.de>
date Sun, 19 Sep 2021 14:32:07 +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 }