mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-06 13:29:56 -05:00
21 lines
334 B
C
21 lines
334 B
C
|
|
#ifdef HAVE_CONFIG_H
|
||
|
|
#include <config.h>
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include <unistd.h>
|
||
|
|
#include <fcntl.h>
|
||
|
|
|
||
|
|
#include <pulsecore/core-util.h>
|
||
|
|
|
||
|
|
int main(int argc, char *argv[]) {
|
||
|
|
|
||
|
|
open("/dev/null", O_RDONLY);
|
||
|
|
open("/dev/null", O_RDONLY);
|
||
|
|
open("/dev/null", O_RDONLY);
|
||
|
|
open("/dev/null", O_RDONLY);
|
||
|
|
|
||
|
|
pa_close_all(5, -1);
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}
|