From 64d33a70cfc5f8c0d2ac5e35c7c6f311451a42f6 Mon Sep 17 00:00:00 2001 From: Tianyu Gao Date: Sun, 7 Apr 2019 16:03:03 +0000 Subject: [PATCH] audio update --- biscuit/c/audio_hello.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/biscuit/c/audio_hello.c b/biscuit/c/audio_hello.c index 1f42cda..0a32deb 100644 --- a/biscuit/c/audio_hello.c +++ b/biscuit/c/audio_hello.c @@ -10,12 +10,11 @@ #include #include - int main(int argc, char **argv) { printf("hello audio world!\n"); fprintf(stdout, "stdout test ok\n"); - fprintf(1, "stdout number test ok\n"); - fprintf(3, "audio number test ok\n"); + fprintf(stderr, "audio test ok\n'"); + return 0; }