happ.c 165 B

1234567891011
  1. // happ.c
  2. #include <stdio.h>
  3. int main() {
  4. FILE *f = fopen("/tmp/pcm_cmd", "w");
  5. if (!f) return 1;
  6. fprintf(f, "pause\n");
  7. fclose(f);
  8. return 0;
  9. }