You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
388 B

6 years ago
#include <common.h>
#include <stdio.h>
#include <errno.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <stdint.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/time.h>
int main(int argc, char **argv)
{
printf("hello audio world!\n");
fprintf(stdout, "stdout test ok\n");
6 years ago
fprintf(stderr, "audio test ok\n'");
6 years ago
return 0;
}