mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 20:55:43 +01:00
8 lines
199 B
C
8 lines
199 B
C
|
#ifndef DIE_H_INCLUDED
|
||
|
#define DIE_H_INCLUDED
|
||
|
|
||
|
void fatal_error(const char *msg) __attribute__((__noreturn__));
|
||
|
void fatal_alsa_error(const char *msg, int err) __attribute__((__noreturn__));
|
||
|
|
||
|
#endif
|