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; }