Files
HAP/haps.c

11 lines
164 B
C

// haps.c
#include <stdio.h>
int main() {
FILE *f = fopen("/tmp/pcm_cmd", "w");
if (!f) return 1;
fprintf(f, "haps\n");
fclose(f);
return 0;
}