SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
framework.cpp
Go to the documentation of this file.
1 #include "framework.h"
2 
3 namespace leansdr
4 {
5 
6 void fatal(const char *s)
7 {
8  perror(s);
9 }
10 
11 void fail(const char *s)
12 {
13  fprintf(stderr, "** %s\n", s);
14 }
15 
16 } // leansdr
void fail(const char *s)
Definition: framework.cpp:11
void fatal(const char *s)
Definition: framework.cpp:6