9 lines
150 B
Bash
Executable File
9 lines
150 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
gcc -x c -o smoke_test -lreport -Wno-implicit-function-declaration - <<EOF
|
|
int main(void) {
|
|
libreport_init();
|
|
}
|
|
EOF
|
|
./smoke_test
|